Have you looked at ?save and ?load?

As I already wrote here: http://stackoverflow.com/questions/14761496/saving-and-loading-a-model-in-r

Best,
Stephan



On 07.02.2013 22:33, James Jong wrote:
Say I train a model in caret, e.g.:

RFmodel <- train(X,Y,method='rf',trControl=myCtrl,tuneLength=1)

How can I save this to disk and load it later in R?

How about an object of the class "resamples"?

resamps <- resamples(
         list(   RF = RFmodel,
                 SVM = SVMmodel,
                 KNN = KNNmodel,
                 NN = NNmodel
                 ))

Thanks,

James

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to