StatisticFormula.TTestPaired(Double, Double, String, String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
쌍체 t 검정 수식은 쌍체 표본을 갖는 스튜던트 t 분포를 사용하여 t 검정을 수행합니다. 이 수식은 표본 그룹을 두 번 검정하는 경우와 같이 표본에서 자연 쌍이 관찰되는 경우 유용합니다.
public:
System::Web::UI::DataVisualization::Charting::TTestResult ^ TTestPaired(double hypothesizedMeanDifference, double probability, System::String ^ firstInputSeriesName, System::String ^ secondInputSeriesName);
public System.Web.UI.DataVisualization.Charting.TTestResult TTestPaired (double hypothesizedMeanDifference, double probability, string firstInputSeriesName, string secondInputSeriesName);
member this.TTestPaired : double * double * string * string -> System.Web.UI.DataVisualization.Charting.TTestResult
Public Function TTestPaired (hypothesizedMeanDifference As Double, probability As Double, firstInputSeriesName As String, secondInputSeriesName As String) As TTestResult
매개 변수
- hypothesizedMeanDifference
- Double
데이터 그룹 평균 간의 가설 차이입니다.
- probability
- Double
알파 값입니다. 허용되는 범위는 0에서 1 사이입니다.
반환
TTestResult 개체입니다.
예제
다음 코드는이 수식을 사용 하는 방법에 설명 합니다.
Dim result As TTestResult = Chart1.DataManipulator.Statistics.TTestPaired(0.2, 0.05, "Series1", "Series2")
TTestResult result = Chart1.DataManipulator.Statistics.TTestPaired(0.2, 0.05, "Series1", "Series2");