A `DataFrame` wrapper that knows which cols are x/y, and returns rows in `__getitem__`
TabularTS(
df,
procs = NULL,
x_names = NULL,
y_names = NULL,
block_y = NULL,
splits = NULL,
do_setup = TRUE,
device = NULL,
inplace = FALSE
)
A DataFrame of your data
list of preprocess functions
predictors names
the names of the dependent variables
the TransformBlock to use for the target
How to split your data
A parameter for if Tabular will run the data through the procs upon initialization
device name
If True, Tabular will not keep a separate copy of your original DataFrame in memory
None