Learn R Programming

JMbayes (version 0.9-0)

gt: The Generalized Student's t Distribution

Description

Density, distribution function, quantile function and random generation for the generalized Student's t distribution.

Usage

dgt(x, mu = 0, sigma = 1, df = stop("no df arg"), log = FALSE)

pgt(q, mu = 0, sigma = 1, df = stop("no df arg"))

qgt(p, mu = 0, sigma = 1, df = stop("no df arg"))

rgt(n, mu = 0, sigma = 1, df = stop("no df arg"))

Value

dgt gives the density, pgt gives the distribution function,

qgt gives the quantile function, and rgt generates random deviates.

Arguments

x, q

vector of quantiles.

p

vector of probabilities.

n

a numeric scalar denoting the number of observations.

mu

a vector of means.

sigma

a vector of standard deviations.

log

logical; if TRUE the density is computed in the log scale.

df

a numeric scalar denoting the degrees of freedom.

Author

Dimitris Rizopoulos d.rizopoulos@erasmusmc.nl

Examples

Run this code
if (FALSE) {
x <- rnorm(10, mean = 10, sd = 3)
dgt(x, mu = 10, sigma = 3, df = 4)
rgt(10, mu = 10, sigma = 3, df = 4)
}

Run the code above in your browser using DataLab