Click or drag to resize
Accord.NET (logo)

TwoAverageKappaTest Constructor (Double, Double, Int32, Double, Double, Int32, 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(
	double meanKappa1,
	double varKappa1,
	int kappaSamples1,
	double meanKappa2,
	double varKappa2,
	int kappaSamples2,
	double hypothesizedDifference = 0,
	bool assumeEqualVariances = true,
	TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent
)
Request Example View Source

Parameters

meanKappa1
Type: SystemDouble
The average kappa value for the first group of contingency tables.
varKappa1
Type: SystemDouble
The kappa's variance in the first group of tables.
kappaSamples1
Type: SystemInt32
The number of contingency tables averaged in the first group.
meanKappa2
Type: SystemDouble
The average kappa value for the second group of contingency tables.
varKappa2
Type: SystemDouble
The kappa's variance in the first group of tables.
kappaSamples2
Type: SystemInt32
The number of contingency tables averaged in the second group.
hypothesizedDifference (Optional)
Type: SystemDouble
The hypothesized difference between the two 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