Share via


StatisticFormula.TTestPaired(Double, Double, String, String) メソッド

定義

T 検定式では、対をなすサンプルとスチューデント T 分布を使用して T 検定を実行します。 サンプルでデータが自然な対になっている場合 (サンプルのグループを 2 回テストする場合など) に便利です。

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 です。

firstInputSeriesName
String

最初のグループのデータを格納する Series オブジェクトの名前。

secondInputSeriesName
String

2 番目のグループのデータを格納する Series オブジェクトの名前。

戻り値

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

適用対象