Last chance! 50% off unlimited learning
Sale ends in
The denorm_z
denormalises time series by z-score method.
denorm_z(x, mean, sd)
the numeric vector (time series)
the mean value
the standard deviation value
the numeric vector of denormalised values
Laurinec P, Luck<U+00E1> M (2018) Clustering-based forecasting method for individual consumers electricity load using time series representations. Open Comput Sci, 8(1):38<U+2013>50, DOI: 10.1515/comp-2018-0006
# NOT RUN {
# Normalise values and save normalisation parameters:
norm_res <- norm_z_list(rnorm(50, 5, 2))
# Denormalise new data with previous computed parameters:
denorm_z(rnorm(50, 4, 2), mean = norm_res$mean, sd = norm_res$sd)
# }
Run the code above in your browser using DataLab