| 
            
              TwoAverageKappaTest Constructor (GeneralConfusionMatrix, GeneralConfusionMatrix, Double, Boolean, TwoSampleHypothesis)
             | 
          
        
         
              Creates a new Two-Table Mean Kappa test.
            
 
    Namespace: 
   Accord.Statistics.Testing
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic TwoAverageKappaTest(
	GeneralConfusionMatrix[] matrices1,
	GeneralConfusionMatrix[] matrices2,
	double hypothesizedDifference = 0,
	bool assumeEqualVariances = true,
	TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent
)
Public Sub New ( 
	matrices1 As GeneralConfusionMatrix(),
	matrices2 As GeneralConfusionMatrix(),
	Optional hypothesizedDifference As Double = 0,
	Optional assumeEqualVariances As Boolean = true,
	Optional alternate As TwoSampleHypothesis = TwoSampleHypothesis.ValuesAreDifferent
)
 Request Example
		View SourceParameters
- matrices1
 - Type: Accord.Statistics.AnalysisGeneralConfusionMatrix
The first group of contingency tables. - matrices2
 - Type: Accord.Statistics.AnalysisGeneralConfusionMatrix
The second  group of contingency tables. - hypothesizedDifference (Optional)
 - Type: SystemDouble
The hypothesized difference between the two average Kappa values. - assumeEqualVariances (Optional)
 - Type: SystemBoolean
True to assume equal variances, false otherwise. Default is true. - alternate (Optional)
 - Type: Accord.Statistics.TestingTwoSampleHypothesis
The alternative hypothesis (research hypothesis) to test. 
See Also