다음을 통해 공유


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 값입니다.

degreeOfFreedom
Int32

자유도입니다.

oneTail
Boolean

true로 설정되면 단측 분포가 사용되고, 그렇지 않으면 양측 분포가 사용됩니다.

반환

Double

t 분포 함수 확률입니다.

예제

다음 코드는이 수식을 사용 하는 방법에 설명 합니다.

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

적용 대상