Standardize functional data (z-score normalization)
Source:R/fdata.R, R/irregFdata.R
standardize.RdTransforms each curve to have mean 0 and standard deviation 1. This is useful for comparing curve shapes regardless of their level or scale.
Usage
standardize(fdataobj)
# S3 method for class 'fdata'
standardize(fdataobj)
# S3 method for class 'irregFdata'
standardize(fdataobj)Examples
fd <- fdata(matrix(rnorm(100) * 10 + 50, 10, 10), argvals = seq(0, 1, length.out = 10))
fd_std <- standardize(fd)
# Check: each curve now has mean ~0 and sd ~1
rowMeans(fd_std$data)
#> [1] -3.164136e-16 5.453971e-16 -5.551115e-17 -1.387779e-16 3.996803e-16
#> [6] 5.911504e-16 1.179612e-16 -3.386180e-16 1.165734e-16 -2.886580e-16
apply(fd_std$data, 1, sd)
#> [1] 1 1 1 1 1 1 1 1 1 1