Enumerates the possible ways to perform a stepwise regression.
Namespace:
Extreme.Statistics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum StepwiseRegressionMethod
Public Enumeration StepwiseRegressionMethod
public enum class StepwiseRegressionMethod
type StepwiseRegressionMethod
| Member name | Value | Description |
---|
| AllVariables | 0 |
All variables are included in the model.
|
| ForwardStepwise | 1 |
Stepwise regression starting from an empty model, allowing variables to be added and removed.
|
| ForwardSelection | 2 |
Stepwise regression starting from an empty model, allowing variables to be added only.
|
| BackwardStepwise | 3 |
Stepwise regression starting from a complete model, allowing variables to be added and removed.
|
| BackwardElimination | 4 |
Stepwise regression starting from a complete model, allowing variables to be removed only.
|
Reference