Rev Language Reference


dnChisq - Chi-Square Distribution

The chi-square probability distribution.

Usage

dnChisq(Natural df)

Arguments

df : Natural (pass by const reference)
The degrees of freedom.

Domain Type

Example

# The most important use of the chi-square distribution
# is arguable the quantile function.
# You can access it the following way:
df <- 10
a := qchisq(0.025, df)
a