Accord.Statistics.Testing.KappaTest.KappaTest C# (CSharp) Method

KappaTest() public method

Creates a new Kappa test.
public KappaTest ( GeneralConfusionMatrix matrix, OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsGreaterThanHypothesis ) : System
matrix Accord.Statistics.Analysis.GeneralConfusionMatrix The contingency table to test.
alternate OneSampleHypothesis The alternative hypothesis (research hypothesis) to test. If the /// hypothesized kappa is left unspecified, a one-tailed test will be used. Otherwise, the /// default is to use a two-sided test.
return System
        public KappaTest(GeneralConfusionMatrix matrix,
            OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsGreaterThanHypothesis)
            : this(matrix, 0, alternate)
        {
        }

Same methods

KappaTest::KappaTest ( GeneralConfusionMatrix matrix, double hypothesizedKappa, OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : System
KappaTest::KappaTest ( WeightedConfusionMatrix matrix, double hypothesizedWeightedKappa, OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : System
KappaTest::KappaTest ( double sampleKappa, double standardError, OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsGreaterThanHypothesis ) : System
KappaTest::KappaTest ( double sampleKappa, double standardError, double hypothesizedKappa, OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : System