R/autoplot.R
autoplot.ResamplingSpCVCoords.Rd
Generic S3 plot()
and autoplot()
(ggplot2) methods.
# S3 method for ResamplingSpCVCoords autoplot( object, task, fold_id = NULL, plot_as_grid = TRUE, train_color = "#0072B5", test_color = "#E18727", crs = NULL, ... ) # S3 method for ResamplingRepeatedSpCVCoords autoplot( object, task, fold_id = NULL, repeats_id = 1, plot_as_grid = TRUE, train_color = "#0072B5", test_color = "#E18727", crs = NULL, ... ) # S3 method for ResamplingSpCVCoords plot(x, ...) # S3 method for ResamplingRepeatedSpCVCoords plot(x, ...)
object |
|
---|---|
task |
|
fold_id |
|
plot_as_grid |
|
train_color |
|
test_color |
|
crs |
|
... | Passed to |
repeats_id |
|
x |
|
if (mlr3misc::require_namespaces(c("sf"), quietly = TRUE)) { library(mlr3) library(mlr3spatiotempcv) task = tsk("ecuador") resampling = rsmp("spcv_coords") resampling$instantiate(task) autoplot(resampling, task) + ggplot2::scale_x_continuous(breaks = seq(-79.085, -79.055, 0.01)) autoplot(resampling, task, fold_id = 1, crs = 4326) autoplot(resampling, task, fold_id = c(1, 2), crs = 4326) * ggplot2::scale_x_continuous(breaks = seq(-79.085, -79.055, 0.01)) }#>