ts_aug_none {tspredit} | R Documentation |
Does not make data augmentation.
ts_aug_none()
a ts_aug_none
object.
library(daltoolbox)
data(sin_data)
#convert to sliding windows
xw <- ts_data(sin_data$y, 10)
#no data augmentation
augment <- ts_aug_none()
augment <- fit(augment, xw)
xa <- transform(augment, xw)
ts_head(xa)