# 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)
Run the code above in your browser using DataLab