Click or drag to resize
Accord.NET (logo)

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
Syntax
public TwoAverageKappaTest(
	GeneralConfusionMatrix[] matrices1,
	GeneralConfusionMatrix[] matrices2,
	double hypothesizedDifference = 0,
	bool assumeEqualVariances = true,
	TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent
)
Request Example View Source

Parameters

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