When working with caret, how can I save a model after training, and load it later (e.g. in a different session) for prediction?
The correct syntax would be to use:
save(model, file="model.Rdata")
Thereafter, it can be loaded using the load() command.