time_series_cv | R Documentation |
These resampling tools are exported from the timetk
package.
timetk::time_series_cv()
: Creates resample sets using time series cross validation
timetk::time_series_split()
: Makes an initial time series split
timetk::plot_time_series_cv_plan()
: Plots a cross validation plan
timetk::tk_time_series_cv_plan()
: Unnests a cross validation plan
# Generate Time Series Resamples
resamples_tscv <- time_series_cv(
data = m750,
assess = "2 years",
initial = "5 years",
skip = "2 years",
slice_limit = 4
)
resamples_tscv
# Visualize the Resample Sets
resamples_tscv %>%
tk_time_series_cv_plan() %>%
plot_time_series_cv_plan(
date, value,
.facet_ncol = 2,
.interactive = FALSE
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.