Logistic Regression Model.Get Wald Test Method
Definition
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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
InvalidOperationException | 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
InvalidOperationException | The model has not been fitted. |
ArgumentNullException | indexes is null |
ArgumentException | 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. |