Learn R Programming

tspredit (version 1.2.767)

ts_norm_none: No Normalization

Description

Identity transform that leaves data unchanged but aligns with the pre/post-processing interface.

Usage

ts_norm_none()

Arguments

Value

A ts_norm_none object.

Examples

Run this code
# 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