StepwiseRegressionMethod 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#
public enum StepwiseRegressionMethod

Members

AllVariables0 All variables are included in the model.
ForwardStepwise1 Stepwise regression starting from an empty model, allowing variables to be added and removed.
ForwardSelection2 Stepwise regression starting from an empty model, allowing variables to be added only.
BackwardStepwise3 Stepwise regression starting from a complete model, allowing variables to be added and removed.
BackwardElimination4 Stepwise regression starting from a complete model, allowing variables to be removed only.

See Also