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

Definition

The t-test with unequal variances formula performs a t-test using Student's t-distribution with unequal variances.

C#
public System.Web.UI.DataVisualization.Charting.TTestResult TTestUnequalVariances(double hypothesizedMeanDifference, double probability, string firstInputSeriesName, string secondInputSeriesName);

Parameters

hypothesizedMeanDifference
Double

Hypothesized difference between the means of the data groups.

probability
Double

Alpha value. The acceptable range is between 0 and 1.

firstInputSeriesName
String

Name of the Series object that stores the first group's data.

secondInputSeriesName
String

Name of the Series object that stores the second group's data.

Returns

A TTestResult object.

Examples

The following code demonstrates how to use this formula.

C#
TTestResult result = Chart1.DataManipulator.Statistics.TTestUnEqualVariances(0.2, 0.05, "Series1", "Series2");  

Applies to

Produit Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1