Skew Normal Log-Likelihood

log_lik_skewnorm(x, mean = 0, sd = 1, shape = 0)

Arguments

x

A numeric vector of values.

mean

A numeric vector of the means.

sd

A non-negative numeric vector of the standard deviations.

shape

A numeric vector of shape.

Value

An numeric vector of the corresponding log-likelihoods.

Examples

log_lik_skewnorm(c(-2:2))
#> [1] -2.9189385 -1.4189385 -0.9189385 -1.4189385 -2.9189385
log_lik_skewnorm(c(-2:2), shape = -2)
#> [1]  -2.2258230  -0.7488043  -0.9189385  -4.5089757 -12.5858928
log_lik_skewnorm(c(-2:2), shape = 2)
#> [1] -12.5858928  -4.5089757  -0.9189385  -0.7488043  -2.2258230