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

Be more careful regarding namespace scoping rules #45

Closed hofnerb closed 8 years ago

hofnerb commented 8 years ago

Replace

mf[[1L]] <- as.name("model.frame")

with

mf[[1L]] <- quote(stats::model.frame)

as pointed out by Kurt Hornik (Email, 28 Mar 2016).