Skip to contents

Expands (sd_mult > 1) or reduces (sd_mult < 1) the standard deviation of the Skew Normal distribution without changing the mean.

Usage

sens_skewnorm(mean, sd, shape, sd_mult = 2)

Arguments

mean

A numeric vector of the means.

sd

A non-negative numeric vector of the standard deviations.

shape

A non-negative numeric vector of shape.

sd_mult

A non-negative multiplier on the standard deviation of the distribution.

Value

A named list of the adjusted distribution's parameters.

Examples

sens_skewnorm(10, 3, -1, 2)
#> $mean
#> [1] 11.69257
#> 
#> $sd
#> [1] 6
#> 
#> $shape
#> [1] -1
#> 
sens_skewnorm(10, 3, 3, 0.8)
#> $mean
#> [1] 10.45416
#> 
#> $sd
#> [1] 2.4
#> 
#> $shape
#> [1] 3
#>