Expands (sd_mult > 1) or reduces (sd_mult < 1) the standard deviation
of the exponential distribution. Due to the parameterization of this
distribution, adjusting the standard deviation necessarily changes the mean
value.
Usage
sens_exp(rate, sd_mult = 2)
Arguments
- rate
A non-negative numeric vector of rate.
- sd_mult
A non-negative multiplier on the standard deviation of the
distribution.
Value
A named list of the adjusted distribution's parameters.
See also
Other sens_dist:
sens_beta(),
sens_gamma(),
sens_gamma_pois(),
sens_gamma_pois_zi(),
sens_lnorm(),
sens_neg_binom(),
sens_norm(),
sens_pois(),
sens_skewlnorm(),
sens_skewnorm(),
sens_student()
Examples
sens_exp(10, 2)
#> $rate
#> [1] 5
#>
sens_exp(10, 0.8)
#> $rate
#> [1] 12.5
#>