Description Usage Arguments Value Examples
Generates a distribution definition when only parameter estimates
are available for gamma distributed parameters. See rgamma
for distribution information.
1 2 3 4 5 6 7 8 9 10 11 12 | gamma_dist_def(
shape,
shape_sd,
scale,
scale_sd,
mean,
mean_sd,
sd,
sd_sd,
max_value,
samples
)
|
shape |
Numeric, shape parameter of the gamma distribution. |
shape_sd |
Numeric, standard deviation of the shape parameter. |
scale |
Numeric, scale parameter of the gamma distribution. |
scale_sd |
Numeric, standard deviation of the scale parameter. |
max_value |
Numeric, the maximum value to allow. Defaults to 120. Samples outside of this range are resampled. |
samples |
Numeric, number of sample distributions to generate. |
A data.table definining the distribution as used by dist_skel
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Using estimated shape and scale
def <- gamma_dist_def(shape = 5.807, shape_sd = 0.2,
scale = 0.9, scale_sd = 0.05,
max_value = 20, samples = 10)
print(def)
def$params[[1]]
## Using mean and sd
def <- gamma_dist_def(mean = 3, mean_sd = 0.5,
sd = 3, sd_sd = 0.1,
max_value = 20, samples = 10)
print(def)
def$params[[1]]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.