F_unif {ARPobservation}R Documentation

Uniform distribution and related equilibrium distribution

Description

Random number generation from a uniform distribution and the related equilibrium distribution, for use with r_behavior_stream.

Usage

F_unif()

Value

Object of class eq_dist with components r_gen and r_eq.

The function r_gen(n, mean) generates random deviates from a uniform distribution with specified mean \mu on the interval (0, 2 \mu). The cumulative distribution function is given by F(x) = x / 2 \mu.

The function r_eq(n, mean) generates random deviates from the equilibrium distribution corresponding to a uniform distribution on the interval (0, 2 \mu). The cumulative distribution function is given by

F(x) = x (4 \mu - x) / (4 \mu^2).

Examples

hist(F_unif()$r_gen(1000, 2))
hist(F_unif()$r_eq(1000, 2))


[Package ARPobservation version 1.2.2 Index]