|
TwoMatrixKappaTest Constructor (Double, Double, Double, Double, Double, TwoSampleHypothesis)
|
Creates a new Two-Table Kappa test.
Namespace:
Accord.Statistics.Testing
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public TwoMatrixKappaTest(
double kappa1,
double var1,
double kappa2,
double var2,
double hypothesizedDifference = 0,
TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent
)
Public Sub New (
kappa1 As Double,
var1 As Double,
kappa2 As Double,
var2 As Double,
Optional hypothesizedDifference As Double = 0,
Optional alternate As TwoSampleHypothesis = TwoSampleHypothesis.ValuesAreDifferent
)
Request Example
View SourceParameters
- kappa1
- Type: SystemDouble
The kappa value for the first contingency table to test. - var1
- Type: SystemDouble
The variance of the kappa value for the first contingency table to test. - kappa2
- Type: SystemDouble
The kappa value for the second contingency table to test. - var2
- Type: SystemDouble
The variance of the kappa value for the second contingency table to test. - hypothesizedDifference (Optional)
- Type: SystemDouble
The hypothesized difference between the two Kappa values. - alternate (Optional)
- Type: Accord.Statistics.TestingTwoSampleHypothesis
The alternative hypothesis (research hypothesis) to test.
See Also