/// 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 (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)
|
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