Stepwise Regression Method Enumeration
Enumerates the possible ways to perform a stepwise regression.
Definition
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum StepwiseRegressionMethodMembers
| 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. |