StatisticFormula.TTestPaired(Double, Double, String, String) Metoda

Definicja

Sparowana formuła t-test wykonuje t-test przy użyciu rozkładu t-studenta ze sparowanych przykładów. Jest to przydatne w przypadku zaobserwowanego naturalnego parowania w próbkach (na przykład gdy grupa próbek jest testowana dwukrotnie).

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

Parametry

hypothesizedMeanDifference
Double

Hipoteza różnicy między sposobem grup danych.

probability
Double

Wartość alfa. Dopuszczalny zakres wynosi od 0 do 1.

firstInputSeriesName
String

Nazwa Series obiektu, który przechowuje dane pierwszej grupy.

secondInputSeriesName
String

Nazwa Series obiektu, który przechowuje dane drugiej grupy.

Zwraca

TTestResult

Obiekt TTestResult.

Przykłady

Poniższy kod pokazuje, jak używać tej formuły.

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");  

Dotyczy