Expands (sd_mult > 1) or reduces (sd_mult < 1) the standard deviation
of the Normal distribution without changing the mean.
Usage
sens_norm(mean, sd, sd_mult = 2)
Arguments
- mean
A numeric vector of the means.
- sd
A non-negative numeric vector of the standard deviations.
- 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_exp(),
sens_gamma(),
sens_gamma_pois(),
sens_gamma_pois_zi(),
sens_lnorm(),
sens_neg_binom(),
sens_pois(),
sens_skewlnorm(),
sens_skewnorm(),
sens_student()
Examples
sens_norm(10, 3, 2)
#> $mean
#> [1] 10
#>
#> $sd
#> [1] 6
#>
sens_norm(10, 3, 0.8)
#> $mean
#> [1] 10
#>
#> $sd
#> [1] 2.4
#>