C# Class Accord.Statistics.Testing.TwoMatrixKappaTest

Inheritance: TwoSampleZTest
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
TwoMatrixKappaTest ( GeneralConfusionMatrix matrix1, GeneralConfusionMatrix matrix2, double hypothesizedDifference, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System

Creates a new Two-Table Kappa test.

TwoMatrixKappaTest ( double kappa1, double var1, double kappa2, double var2, double hypothesizedDifference, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System

Creates a new Two-Table Kappa test.

Method Details

TwoMatrixKappaTest() public method

Creates a new Two-Table Kappa test.
public TwoMatrixKappaTest ( GeneralConfusionMatrix matrix1, GeneralConfusionMatrix matrix2, double hypothesizedDifference, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System
matrix1 Accord.Statistics.Analysis.GeneralConfusionMatrix The first contingency table to test.
matrix2 Accord.Statistics.Analysis.GeneralConfusionMatrix The second contingency table to test.
hypothesizedDifference double The hypothesized difference between the two Kappa values.
alternate TwoSampleHypothesis The alternative hypothesis (research hypothesis) to test.
return System

TwoMatrixKappaTest() public method

Creates a new Two-Table Kappa test.
public TwoMatrixKappaTest ( double kappa1, double var1, double kappa2, double var2, double hypothesizedDifference, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System
kappa1 double The kappa value for the first contingency table to test.
var1 double The variance of the kappa value for the first contingency table to test.
kappa2 double The kappa value for the second contingency table to test.
var2 double The variance of the kappa value for the second contingency table to test.
hypothesizedDifference double The hypothesized difference between the two Kappa values.
alternate TwoSampleHypothesis The alternative hypothesis (research hypothesis) to test.
return System