Uses of Interface
dev.nm.stat.regression.linear.glm.modelselection.ForwardSelection.Step
-
Packages that use ForwardSelection.Step Package Description dev.nm.stat.regression.linear.glm.modelselection -
-
Uses of ForwardSelection.Step in dev.nm.stat.regression.linear.glm.modelselection
Classes in dev.nm.stat.regression.linear.glm.modelselection that implement ForwardSelection.Step Modifier and Type Class Description class
SelectionByAIC
In each step, a factor is added if the resulting model has the highest AIC, until no factor addition can result in a model with AIC higher than the current AIC.class
SelectionByZValue
In each step, the most significant factor is added, until all remaining factors are insignificant.Constructors in dev.nm.stat.regression.linear.glm.modelselection with parameters of type ForwardSelection.Step Constructor Description ForwardSelection(GLMProblem problem, ForwardSelection.Step step)
Constructs a GLM model using the forward selection method.
-