Global Centering and Scaling Parameters of Time Series Lists
Source:R/utils_global_scaling_params.R
utils_global_scaling_params.Rd
Internal function to compute global scaling parameters (mean and standard deviation) for time series lists. Used within tsl_transform()
when the scaling functions f_center()
, f_scale()
, or base::scale()
are used as inputs for the argument f
.
Warning: this function removes exclusive columns from the data. See function tsl_subset()
.
Arguments
- tsl
(required, list) Time series list. Default: NULL
- f
(required, function) function name. Usually, one of
f_center()
,f_scale()
, orbase::scale()
. Default: NULL- ...
(optional, arguments of
f
) Optional arguments for the transformation function. Used only whenf = scale
for argumentscenter
andscale
.
See also
Other tsl_processing_internal:
utils_drop_geometry()
,
utils_optimize_loess()
,
utils_optimize_spline()
,
utils_rescale_vector()