dSkewNorm | R Documentation |
Generalized Normal distribution with skew parameter.
dSkewNorm(x, q1, q3, s = 0)
pSkewNorm(x, q1, q3, s = 0)
qSkewNorm(p, q1, q3, s = 0)
rSkewNorm(n, q1, q3, s = 0)
x |
vector of quantiles. If 'length(n)>1“, the length is taken to be the number required. |
q1 |
minimum value |
q3 |
maximum value |
s |
skew parameter betweem -1 and 1. When skew parameter equal 0, distribution is normal. |
p |
numeric vector of probabilities |
n |
number of observations. If 'length(n)>1“, the length is taken to be the number required. |
a vector of probabilities of length equal to length(x)
.
a vector of exceedance probabilities of length equal to length(x)
.
a vector of exceedance probabilities of length equal to length(x)
.
a length n
vector of random values.
dSkewNorm(12, 10, 20, 0.5)
pSkewNorm(12, 10, 20, 0.5)
qSkewNorm(12, 10, 20, 0.5)
rSkewNorm(1, 10, 20, 0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.