Learn R Programming

modeltime (version 1.3.0)

make_ts_splits: Generate a Time Series Train/Test Split Indicies

Description

Makes fast train/test split indicies for time series.

Usage

make_ts_splits(.data, .length_test, .length_train = NULL)

Value

A list containing train_idx and test_idx

Arguments

.data

A data frame containing ordered time seried data (ascending)

.length_test

The number of rows to include in the test set

.length_train

Optional. The number of rows to include in the training set. If NULL, returns all remaining row indicies.