step_ts_pad {timetk} | R Documentation |
Pad: Add rows to fill gaps and go from low to high frequency
Description
step_ts_pad
creates a a specification of a recipe
step that will analyze a Date or Date-time column adding rows
at a specified interval.
Usage
step_ts_pad(
recipe,
...,
by = "day",
pad_value = NA,
role = "predictor",
trained = FALSE,
columns = NULL,
skip = FALSE,
id = rand_id("ts_padding")
)
## S3 method for class 'step_ts_pad'
tidy(x, ...)
Arguments
recipe |
A recipe object. The step will be added to the sequence of operations for this recipe. |
... |
A single column with class |
by |
Either "auto", a time-based frequency like "year", "month", "day", "hour", etc, or a time expression like "5 min", or "7 days". See Details. |
pad_value |
Fills in padded values. Default is |
role |
For model terms created by this step, what analysis role should they be assigned?. By default, the function assumes that the new variable columns created by the original variables will be used as predictors in a model. |
trained |
A logical to indicate if the quantities for preprocessing have been estimated. |
columns |
A character string of variables that will be
used as inputs. This field is a placeholder and will be
populated once |
skip |
A logical. Should the step be skipped when the recipe is baked by bake.recipe()? While all operations are baked when prep.recipe() is run, some operations may not be able to be conducted on new data (e.g. processing the outcome variable(s)). Care should be taken when using skip = TRUE as it may affect the computations for subsequent operations. |
id |
A character string that is unique to this step to identify it. |
x |
A |
Details
Date Variable
Only one date or date-time variable may be supplied.
-
step_ts_pad())
does not remove the original date variables.
Interval Specification (by)
Padding can be applied in the following ways:
The eight intervals in are: year, quarter, month, week, day, hour, min, and sec.
Intervals like 30 minutes, 1 hours, 14 days are possible.
Imputing Missing Values
The generic pad_value
defaults to NA
, which typically requires imputation.
Some common strategies include:
-
Numeric data: The
step_ts_impute()
preprocessing step can be used to impute numeric time series data with or without seasonality -
Nominal data: The
step_mode_impute()
preprocessing step can be used to replace missing values with the most common value.
Value
For step_ts_pad
, an updated version of recipe with
the new step added to the sequence of existing steps (if any).
For the tidy
method, a tibble with columns terms
(the selectors or variables selected), value
(the feature
names).
See Also
Padding & Imputation:
Pad Time Series:
step_ts_pad()
Impute missing values with these:
step_ts_impute()
,step_ts_clean()
Time Series Analysis:
Engineered Features:
step_timeseries_signature()
,step_holiday_signature()
,step_fourier()
Diffs & Lags
step_diff()
,recipes::step_lag()
Smoothing:
step_slidify()
,step_smooth()
Variance Reduction:
step_box_cox()
Main Recipe Functions:
-
recipes::recipe()
-
recipes::prep
-
recipes::bake
Examples
library(recipes)
library(dplyr)
FB_tbl <- FANG %>%
filter(symbol == "FB") %>%
select(symbol, date, adjusted)
rec_obj <- recipe(adjusted ~ ., data = FB_tbl) %>%
step_ts_pad(date, by = "day", pad_value = NA)
# View the recipe object
rec_obj
# Prepare the recipe object
prep(rec_obj)
# Bake the recipe object - Adds the padding
bake(prep(rec_obj), FB_tbl)
# Tidy shows which features have been added during the 1st step
# in this case, step 1 is the step_timeseries_signature step
tidy(prep(rec_obj))
tidy(prep(rec_obj), number = 1)