Język

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

Definicja

Formuła parowana t-test wykonuje test t przy użyciu rozkładu t-studenta z sparowanymi próbkami. Jest to przydatne w przypadku obserwowanego naturalnego parowania w próbkach (na przykład w przypadku dwukrotnego testowania grupy próbek).

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 środkami grup danych.

probability
Double

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

firstInputSeriesName
String

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

secondInputSeriesName
String

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

Zwraca

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