Click or drag to resize

FDistribution

The F-distribution is a continuous probability distribution. It is also known as Snedecor's F distribution or the Fisher-Snedecor distribution. The F-distribution arises frequently as the null distribution of a test statistic, most notably in the analysis of variance. It has two parameters d1 and d2, which characterize degrees of freedom.

This topic contains the following sections:

Constructor

Constructor

Description

Performance

set degrees of freedom

Creates new instance of FDistribution with user specified parameters.

methodFDistribution(Double, Double)

Methods

Method

Description

Performance

sample

Generate random variable sample.

methodSample

Fill in array with random variable series in place:

methodSample(Double)

Static method which generates new sample of FDistribution distribution variate with specified parameters:

StaticSample(Double, Double)

StaticSample(RandomGenerator, Double, Double)

pdf

Probability density function.

DFDistribution Pdf

where B is the beta function.

methodPdf(Double)

Static probability density function.

StaticPdf(Double, Double, Double)

cdf

Cumulative distribution function.

DFDistribution Cdf

where I is the regularized incomplete beta function.

methodCdf(Double)

Static cumulative distribution function.

StaticCdf(Double, Double, Double)

inverse cdf

Inverse cumulative distribution function. Is useful for quantile calculation. Function will return value of random variable such that likelihood for this random variable to occur less than or equal to returned value equal to specified pvalue parameter.

StaticInverseCdf(Double, Double, Double)

Properties

Property

Description

Performance

D1

Numerator degrees of freedom number.

PropertyD1

D2

Denominator degrees of freedom number.

PropertyD2

mean

Mean of the distribution.

DFDistribution Mean

PropertyMean

mode

Mode of distribution.

DFDistribution Mode

PropertyMode

kurtosis

Excess Kurtosis of distribution.

DFDistribution Kurtosis

PropertyKurtosis

skewness

Skewness of distribution.

DFDistribution Skewness

PropertySkewness

variance

Variance of the distribution.

DFDistribution Variance

PropertyVariance

standard deviation

Standard deviation of the distribution.

DFDistribution Std Dev

PropertyStandardDeviation