Skip to contents

Wraps base::scale() for global centering with tsl_transform().

Usage

f_center(x = NULL, center = TRUE, scale = FALSE)

Arguments

x

(required, zoo object) Zoo time series object to transform.

center

(optional, logical or numeric vector) Triggers centering if TRUE. Default: TRUE

scale

(optional, logical or numeric vector) Triggers scaling if TRUE. Default: FALSE

Value

zoo object

Examples

x <- zoo_simulate()

y <- f_center(
  x = x
)

if(interactive()){
  zoo_plot(x)
  zoo_plot(y)
}