Dundas.SharePoint.Charting.WebParts Send comments on this topic.
FDistribution Method
See Also 
Dundas.Charting.WebControl Namespace > Statistics Class : FDistribution Method


fValue
F Value
firstDegreeOfFreedom
First Degree of Freedom
secondDegreeOfFreedom
Second Degree Of Freedom
/// Returns the F probability distribution. You can use this function to determine whether two data sets have different degrees of diversity. For example, you can examine test scores given to men and women entering high school and determine if the variability in the females is different from that found in the males.

Syntax

Visual Basic (Declaration)  
Public Function FDistribution( _
   ByVal fValue As Double, _
   ByVal firstDegreeOfFreedom As Integer, _
   ByVal secondDegreeOfFreedom As Integer _
) As Double
Visual Basic (Usage) Copy Code
Dim instance As Statistics
Dim fValue As Double
Dim firstDegreeOfFreedom As Integer
Dim secondDegreeOfFreedom As Integer
Dim value As Double
 
value = instance.FDistribution(fValue, firstDegreeOfFreedom, secondDegreeOfFreedom)
C#  
public double FDistribution( 
   double fValue,
   int firstDegreeOfFreedom,
   int secondDegreeOfFreedom
)

Parameters

fValue
F Value
firstDegreeOfFreedom
First Degree of Freedom
secondDegreeOfFreedom
Second Degree Of Freedom

Return Value

Returns value from cumulative F distribution function.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also