|
TwoMatrixKappaTest Constructor (GeneralConfusionMatrix, GeneralConfusionMatrix, 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(
GeneralConfusionMatrix matrix1,
GeneralConfusionMatrix matrix2,
double hypothesizedDifference = 0,
TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent
)
Public Sub New (
matrix1 As GeneralConfusionMatrix,
matrix2 As GeneralConfusionMatrix,
Optional hypothesizedDifference As Double = 0,
Optional alternate As TwoSampleHypothesis = TwoSampleHypothesis.ValuesAreDifferent
)
Request Example
View SourceParameters
- matrix1
- Type: Accord.Statistics.AnalysisGeneralConfusionMatrix
The first contingency table to test. - matrix2
- Type: Accord.Statistics.AnalysisGeneralConfusionMatrix
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