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

AverageKappaTest() public method

Creates a new multiple table Kappa test.
public AverageKappaTest ( double kappas, double variances ) : System
kappas double The kappa values.
variances double The variance for each kappa value.
return System
        public AverageKappaTest(double[] kappas, double[] variances)
        {
            if (kappas.Length != variances.Length)
                throw new DimensionMismatchException("variances", 
                    "The number of variance estimates and kappa estimates must match.");

            this.Compute(kappas, variances);
        }

Same methods

AverageKappaTest::AverageKappaTest ( GeneralConfusionMatrix matrices ) : System