Draws train vs test RMSE plot for models
draw_rmse_plot(
train_observed,
train_predictions,
test_observed,
test_predictions,
models
)
A vector of the true values for training dataset.
A list of lists of predictions on the training dataset for models but just for c('ranger', 'xgboost', 'decision_tree')
A vector of the true values for test dataset.
A list of lists of predictions on test dataset for models but just for c('ranger', 'xgboost', 'decision_tree')
A list of models.