|
MultinomialLogisticRegressionGetWaldTest Method (Int32)
|
Gets the Wald Test for all coefficients.
Namespace:
Accord.Statistics.Models.Regression
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public WaldTest[] GetWaldTest(
int category
)
Public Function GetWaldTest (
category As Integer
) As WaldTest()
Request Example
View SourceParameters
- category
- Type: SystemInt32
The category's index.
Return Value
Type:
WaldTestRemarks
The Wald statistical test is a test for a model parameter in which
the estimated parameter θ is compared with another proposed parameter
under the assumption that the difference between them will be approximately
normal. There are several problems with the use of the Wald test. Please
take a look on substitute tests based on the log-likelihood if possible.
See Also