dst(x, xi=0, omega=1, alpha=0, nu=Inf, dp=NULL, log=FALSE)
pst(x, xi=0, omega=1, alpha=0, nu=Inf, dp=NULL, ...)
qst(p, xi=0, omega=1, alpha=0, nu=Inf, tol=1e-08, dp=NULL, ...)
rst(n=1, xi=0, omega=1, alpha=0, nu=Inf, dp=NULL)NAs) are allowed.pst and qst,
it must be of length 1.nu=Inf
which corresponds to the skew-normal distribution.dp is
specified, the individual parameters cannot be set.qsn.integratedst), probability (pst), quantiles (qst)
and random sample (rst) from the skew-$t$ distribution with given
xi, omega, alpha and nu parameters.alpha parameter which regulates
skewness; when alpha=0, the skew-$t$ distribution reduces to the
usual Student's $t$ distribution. When nu=Inf, it reduces to the
skew-normal distribution. A multivariate version of the distribution exists.
See Chapter 4 of the reference below for additional information.dmst, dsnpdf <- dst(seq(-4,4,by=0.1), alpha=3, nu=5)
rnd <- rst(100, 5, 2, -5, 8)
q <- qst(c(0.25,0.5,0.75), alpha=3, nu=5)
pst(q, alpha=3, nu=5) # must give back c(0.25,0.5,0.75)Run the code above in your browser using DataLab