C# Class Accord.Statistics.Testing.TwoAverageKappaTest

Inheritance: TwoSampleTTest
Show file Open project: accord-net/framework

Public Methods

Method Description
TwoAverageKappaTest ( GeneralConfusionMatrix matrices1, GeneralConfusionMatrix matrices2, double hypothesizedDifference, bool assumeEqualVariances = true, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System

Creates a new Two-Table Mean Kappa test.

TwoAverageKappaTest ( double meanKappa1, double varKappa1, int kappaSamples1, double meanKappa2, double varKappa2, int kappaSamples2, double hypothesizedDifference, bool assumeEqualVariances = true, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System

Creates a new Two-Table Mean Kappa test.

Method Details

TwoAverageKappaTest() public method

Creates a new Two-Table Mean Kappa test.
public TwoAverageKappaTest ( GeneralConfusionMatrix matrices1, GeneralConfusionMatrix matrices2, double hypothesizedDifference, bool assumeEqualVariances = true, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System
matrices1 Accord.Statistics.Analysis.GeneralConfusionMatrix The first group of contingency tables.
matrices2 Accord.Statistics.Analysis.GeneralConfusionMatrix The second group of contingency tables.
hypothesizedDifference double The hypothesized difference between the two average Kappa values.
assumeEqualVariances bool True to assume equal variances, false otherwise. Default is true.
alternate TwoSampleHypothesis The alternative hypothesis (research hypothesis) to test.
return System

TwoAverageKappaTest() public method

Creates a new Two-Table Mean Kappa test.
public TwoAverageKappaTest ( double meanKappa1, double varKappa1, int kappaSamples1, double meanKappa2, double varKappa2, int kappaSamples2, double hypothesizedDifference, bool assumeEqualVariances = true, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System
meanKappa1 double The average kappa value for the first group of contingency tables.
varKappa1 double The kappa's variance in the first group of tables.
kappaSamples1 int The number of contingency tables averaged in the first group.
meanKappa2 double The average kappa value for the second group of contingency tables.
varKappa2 double The kappa's variance in the first group of tables.
kappaSamples2 int The number of contingency tables averaged in the second group.
hypothesizedDifference double The hypothesized difference between the two Kappa values.
assumeEqualVariances bool True to assume equal variances, false otherwise. Default is true.
alternate TwoSampleHypothesis The alternative hypothesis (research hypothesis) to test.
return System