get_discrete_dist {ern} | R Documentation |
Get a discretized, truncated version of a distribution
Description
Get a discretized, truncated version of a distribution
Usage
get_discrete_dist(params)
Arguments
params |
distribution params (output of |
Value
Numeric. Vector with discretized density.
Examples
# Define distributions
fec = ern::def_dist(
dist = "gamma",
mean = 12.90215,
mean_sd = 1.136829,
shape = 1.759937,
shape_sd = 0.2665988,
max = 33
)
gi = ern::def_dist(
dist = "gamma",
mean = 6.84,
mean_sd = 0.7486,
shape = 2.39,
shape_sd = 0.3573,
max = 15
)
# Get their (discretized) densities
d.fec = get_discrete_dist(fec)
d.gi = get_discrete_dist(gi)
print(d.fec)
print(d.gi)
[Package ern version 2.0.0 Index]