| ts_aug_none | R Documentation |
Identity augmentation that returns the original windows while preserving the augmentation interface and indices.
ts_aug_none()
A ts_aug_none object.
# Identity augmentation (no changes to windows)
# Load package and example dataset
library(daltoolbox)
data(tsd)
# Convert to sliding windows and preview
xw <- ts_data(tsd$y, 10)
ts_head(xw)
# No augmentation; returns the same windows with indices preserved
augment <- ts_aug_none()
augment <- fit(augment, xw)
xa <- transform(augment, xw)
ts_head(xa)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.