Plots the tuning of the hyperparameters num.trees, mtry, and min.node.size performed by rf_tuning().
Usage
plot_tuning(
model,
point.color = viridis::viridis(
100,
option = "F"
),
verbose = TRUE
)Arguments
- model
A model fitted with
rf_tuning(). Default:NULL- point.color
Colors of the plotted points. Can be a single color name (e.g. "red4"), a character vector with hexadecimal codes (e.g. "#440154FF" "#21908CFF" "#FDE725FF"), or function generating a palette (e.g.
viridis::viridis(100)). Default:viridis::viridis(100, option = "F")- verbose
Logical, if
TRUE, the plot is printed. Default:TRUE