dlst | R Documentation |
Internal functions for defining the t-distribution in terms of location-scale.
dlst(x, df = 1, mu = 0, sigma = 1, log = FALSE) plst(q, df = 1, mu = 0, sigma = 1, log = FALSE)
x, q |
The data vector |
df |
Degrees of freedom |
mu |
The location parameter |
sigma |
The scale parameter |
log |
Indicate whether probabilities are return as log |
Numeric values representing the density and cumulative probabilitiy values of the location-scale t distribution
dlst
: Probability Density Function
plst
: Cumulative distribution function
val <- rnorm(10) dlst(val, df = 1, mu = 0, sigma = 1) val <- rnorm(10) plst(q = val, df = 1, mu = 0, sigma = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.