- A Broad overview of the Model Building Process
- Train-test split
- Preprocessing
- Explore Model Validations with Cross-Validation Methods
- Hyper parameter tuning
- Alliviate Over-fitting
April 28, 2016
Caret implements a unified interface (syntax) for all of R's most popular models. The basic syntax is as follows:
model <- train(formula = y ~ x,
data = dataset, method = 'lm'
trControl = 'additional options')
Add smoother to scatterplots