|
KappaTest Constructor (Double, Double, OneSampleHypothesis)
|
Creates a new Kappa test.
Namespace:
Accord.Statistics.Testing
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public KappaTest(
double sampleKappa,
double standardError,
OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsGreaterThanHypothesis
)
Public Sub New (
sampleKappa As Double,
standardError As Double,
Optional alternate As OneSampleHypothesis = OneSampleHypothesis.ValueIsGreaterThanHypothesis
)
Request Example
View SourceParameters
- sampleKappa
- Type: SystemDouble
The estimated Kappa statistic. - standardError
- Type: SystemDouble
The standard error of the kappa statistic. If the test is
being used to assert independency between two raters (i.e. testing the null hypothesis
that the underlying Kappa is zero), then the
standard error should be computed with the null hypothesis parameter set to true. - alternate (Optional)
- Type: Accord.Statistics.TestingOneSampleHypothesis
The alternative hypothesis (research hypothesis) to test. If the
hypothesized kappa is left unspecified, a one-tailed test will be used. Otherwise, the
default is to use a two-sided test.
See Also