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