boost-R / mboost

Boosting algorithms for fitting generalized linear, additive and interaction models to potentially high-dimensional data. The current relase version can be found on CRAN (http://cran.r-project.org/package=mboost).
73 stars 27 forks source link

fix stabsel(, grid = ...) #21

Open hofnerb opened 8 years ago

hofnerb commented 8 years ago

When using

mod <- glmboost(...)
mstop(mod) <- 1
stabsel(mod, grid = 1:10)

everything works as expected. Yet, using

mstop(mod) <- 100
stabsel(mod, grid = 1:10)

ignores the grid and runs until 100 on each stabsel fold. (spotted by A. Mayr)