| ts_norm_none | R Documentation |
Identity transform that leaves data unchanged but aligns with the pre/post-processing interface.
ts_norm_none()
A ts_norm_none object.
# Identity normalization (no scaling applied)
# Load package and example data
library(daltoolbox)
data(tsd)
# Convert to sliding windows
xw <- ts_data(tsd$y, 10)
# No data normalization — transform returns inputs unchanged
normalize <- ts_norm_none()
normalize <- fit(normalize, xw)
xa <- transform(normalize, xw)
ts_head(xa)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.