Logistic Regression Model.Get Wald Test Method
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Get | Returns the Wald test for all the parameters in the regression. |
Get | Returns the Wald test for the selected parameters in the regression. |
GetWaldTest
Returns the Wald test for all the parameters in the regression.
public SimpleHypothesisTest GetWaldTest()
Return Value
SimpleHypothesisTestA SimpleHypothesisTest object.
Exceptions
Invalid | The model has not been fitted. |
GetWaldTest(Int32[])
Returns the Wald test for the selected parameters in the regression.
public SimpleHypothesisTest GetWaldTest(
int[] indexes
)
Parameters
- indexes Int32[]
- An array containing the indexes of the parameters that are to be included in the test.
Return Value
SimpleHypothesisTestA SimpleHypothesisTest object.
Exceptions
Invalid | The model has not been fitted. |
Argument | indexes is null. |
Argument | One or more of the elements of indexes is less than zero or greater than or equal to the number of parameters in the model. |