StatisticFormula.InverseTDistribution(Double, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The inverse t-distribution formula calculates the t-value of the Student's t-distribution as a function of probability and degrees of freedom.
public:
double InverseTDistribution(double probability, int degreeOfFreedom);
public double InverseTDistribution (double probability, int degreeOfFreedom);
member this.InverseTDistribution : double * int -> double
Public Function InverseTDistribution (probability As Double, degreeOfFreedom As Integer) As Double
Parameters
- probability
- Double
Probability for the t-distribution. The acceptable range is between 0 and 1.
- degreeOfFreedom
- Int32
Degree of freedom.
Returns
Inverse of the t-distribution.
Examples
The following code demonstrates how to use this formula.
double result = Chart1.DataManipulator.Statistics.InverseTDistribution(.05, 15)
double result = Chart1.DataManipulator.Statistics.InverseTDistribution(.05, 15);
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.