Search notes:

Probablity ditributions

Discrete distributions

Binomial

The R root name is binom.

Geometric

The R root name is geom.

Hypergeometric

The R root name is hyper.

Negative binomial

The R root name is nbinom.

Poisson

The R root name is pois.

Continuous distributions

Beta

The R root name is beta.

Cauchy

The R root name is cauchy.

Chi-squared

The chi-square distribution is a special case of the gamma distribution.
It is a widely used distributions in inferential statistics, primarily in hypothesis testing or in construction of confidence intervals because of its (mathematical) relationship to the normal distribution.
The R root name is chisq.
help Chisquare

Exponential

The R root name is exp.

F

The R root name is f.

Gamma

The R root name is gamma.

Log-normal

The R root name is lnorm.
help Lognormal

Logistic

The R root name is logis.

Normal

The normal distribution is a measure of location, rather than goodness-of-fit.
A normal distribution has zero kurtosis.
The R root name is norm.

Student's t

The R root name is t.
R: help TDist

Uniform

The R root name is unif.

Weibull

The R root name is weibull.

Wilcoxon

The R root name is wilcox.

Terminology

Cumulative distribution function (CDF)

Cumulative distribution function, aka cumulative densitiy function is the probability that a random variable, evaluated at x, is less than or equal to x.
In R, The CDFs of probability distribution can be calculated with the p prefix.

See also

R functions: probabilty distributions
Descriptive vs inferential statistics
A distribution can be graphically represented with a histogram.

Index