topepo / caret

caret (Classification And Regression Training) R package that contains misc functions for training and plotting classification and regression models
http://topepo.github.io/caret/index.html
1.61k stars 632 forks source link

Pacakge elm is archived. Possible to replace method="elm" with elmNNRcpp? #1273

Open AndyBunn opened 2 years ago

AndyBunn commented 2 years ago

Hello, just a note to say that the elm package has been archived and replaced with elmNNRcpp which is actively maintained. There is a note in elm.R pointing out that elm has been archived but I've been running into problems with getting it to run.

library(mlbench)
data(BostonHousing)

elmFit <- train(medv ~ . + rm:lstat,
               data = BostonHousing,
               method = "elm")