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
Samarbeid med oss på GitHub
Du finner kilden for dette innholdet på GitHub. Der du også kan opprette og se gjennom problemer og pull-forespørsler. Hvis du vil ha mer informasjon, kan du se vår bidragsyterveiledning.