Uses of Interface
dev.nm.stat.regression.linear.glm.modelselection.BackwardElimination.Step
-
Packages that use BackwardElimination.Step Package Description dev.nm.stat.regression.linear.glm.modelselection -
-
Uses of BackwardElimination.Step in dev.nm.stat.regression.linear.glm.modelselection
Classes in dev.nm.stat.regression.linear.glm.modelselection that implement BackwardElimination.Step Modifier and Type Class Description class
EliminationByAIC
In each step, a factor is dropped if the resulting model has the least AIC, until no factor removal can result in a model with AIC lower than the current AIC.class
EliminationByZValue
In each step, the factor with the least z-value is dropped, until all z-values are greater than the critical value (given by the significance level).Constructors in dev.nm.stat.regression.linear.glm.modelselection with parameters of type BackwardElimination.Step Constructor Description BackwardElimination(GLMProblem problem, BackwardElimination.Step step)
Constructs a GLM model using the backward elimination method.
-