Dundas Chart for ASP.NET
F Distribution Formula
See Also Send comments on this topic.
Formula Reference > Statistical Formulas > F Distribution Formula



Glossary Item Box

Overview

Enterprise Edition Only Feature.

Returns the probability for the F-distribution.

Applying the Formula

All statistical formulas are calculated using the Statistics class, and the following table describes how to use its FDistribution method.

 

  Value/Description Example
Formula Name: F Distribution Statistics.FDistribution(6.31, 15, 7)
Parameters:
  1. fValue: The F value for which you want the distribution.
  2. firstDegreeOfFreedom: an integer value that represents the first degree of freedom.
  3. secondDegreeOfFreedom: an integer value that represents the second degree of freedom.
Statistics.FDistribution(6.31, 15, 7)
Return: A double that represents the probability for the F distribution.

-

Statistical Interpretation

Suppose  and  are the observed variances for two samples, of sizes n and m, drawn from normal populations with variances  and  , respectively. We can test the null hypothesis that  by calculating the distribution of the variance ratio.



Figure 1: Graph of F Distribution.

 

Example

This example demonstrates how to calculate the F distribution probability.

Visual Basic Copy Code
Imports Dundas.Charting.WebControl
  ...
  
' Calculate F distribution probability.
Dim result As double = Chart1.DataManipulator.Statistics.FDistribution(6.31,15,7)


                    
C# Copy Code
using Dundas.Charting.WebControl;
  ...
  
// Calculate F distribution probability.
double result = Chart1.DataManipulator.Statistics.FDistribution(6.31,15,7);


                    

See Also

Formulas
Formulas Overview

Statistical Formulas
Using Statistical Formulas

Copyright © 2001 - 2009 Dundas Data Visualization, Inc. and others.