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.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public enum StepwiseRegressionMethod
Members
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. |