StatisticFormula.TDistribution(Double, Int32, Boolean) メソッド

定義

T 分布式では、スチューデント T 分布の確率を計算します。

public:
 double TDistribution(double value, int degreeOfFreedom, bool oneTail);
public double TDistribution (double value, int degreeOfFreedom, bool oneTail);
member this.TDistribution : double * int * bool -> double
Public Function TDistribution (value As Double, degreeOfFreedom As Integer, oneTail As Boolean) As Double

パラメーター

value
Double

t分布が必要な -value。

degreeOfFreedom
Int32

自由度。

oneTail
Boolean

true に設定された場合は片側分布が使用されます。 それ以外の場合は両側分布が使用されます。

戻り値

T 分布関数の確率。

次のコードは、この数式の使用方法を示しています。

Dim result As Double = Chart1.DataManipulator.Statistics.TDistribution(1.96, 30, true)  
double result = Chart1.DataManipulator.Statistics.TDistribution(1.96, 30, true);  

適用対象