This method returns the t-value of the Student's t-distribution as a function of probability and degrees of freedom.
Returns the t-value of the Student's t-distribution as a function of the probability and the degrees of freedom.
Syntax
Visual Basic (Usage) |
Copy Code |
Dim instance As Statistics
Dim probability As Double
Dim degreeOfFreedom As Integer
Dim value As Double
value = instance.InverseTDistribution(probability, degreeOfFreedom)
|
Parameters
- probability
- The probability for which the t-value is required. Allowable range is 0-1.
Probability
- degreeOfFreedom
- The degree of freedom.
Degree of Freedom
Return Value
Returns Inverse T distribution.
Example
The following sample calculates the Inverse T distribution probability.
Visual Basic |
Copy Code |
Imports Dundas.Charting.WinControl ...
Dim result As Double = Chart1.DataManipulator.Statistics.InverseTDistribution(.05, 15) |
C# |
Copy Code |
using Dundas.Charting.WinControl; ...
// Calculate Inverse T distribution probability double result = Chart1.DataManipulator.Statistics.InverseTDistribution(.05, 15); |
Remarks
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