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

Definition

Performs a T Test using Student's distribution (T distribution) with paired samples. This is useful when there is a natural pairing of observations in samples.

public:
 System::Windows::Forms::DataVisualization::Charting::TTestResult ^ TTestPaired(double hypothesizedMeanDifference, double probability, System::String ^ firstInputSeriesName, System::String ^ secondInputSeriesName);
public System.Windows.Forms.DataVisualization.Charting.TTestResult TTestPaired (double hypothesizedMeanDifference, double probability, string firstInputSeriesName, string secondInputSeriesName);
member this.TTestPaired : double * double * string * string -> System.Windows.Forms.DataVisualization.Charting.TTestResult
Public Function TTestPaired (hypothesizedMeanDifference As Double, probability As Double, firstInputSeriesName As String, secondInputSeriesName As String) As TTestResult

Parameters

hypothesizedMeanDifference
Double

Hypothesized mean difference.

probability
Double

The alpha value, which is the probability that the hypothesis is rejected. The allowable range is 0-1.

firstInputSeriesName
String

First input series name.

secondInputSeriesName
String

Second input series name.

Returns

A TTestResult object.

Applies to