make_ts_splits {modeltime} | R Documentation |
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)
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. |
Value
A list containing train_idx and test_idx
[Package modeltime version 1.3.0 Index]