Standardise a vector
Usage
ts_standardise(
y,
na.rm = TRUE,
keepNAvalues = TRUE,
type = c("mean.sd", "median.mad")[1],
adjustN = TRUE
)
Arguments
- y
A time series or numeric vector
- na.rm
Set the
na.rm
fieldIf
na.rm = TRUE
andkeepNAvalues = TRUE
, anyNA
values iny
will be re-inserted after transformation.- type
Center on the
"mean"
and divide bysd
(default), or center on"median"
and divide bymad
- adjustN
If
TRUE
, apply Bessel's correction (divide byN-1
) or return the unadjustedSD
(divide byN
) (default =TRUE
)
See also
Other Time series operations:
ts_center()
,
ts_changeindex()
,
ts_checkfix()
,
ts_detrend()
,
ts_diff()
,
ts_discrete()
,
ts_duration()
,
ts_embed()
,
ts_integrate()
,
ts_levels()
,
ts_peaks()
,
ts_permtest_block()
,
ts_permtest_transmat()
,
ts_rasterize()
,
ts_sd()
,
ts_slice()
,
ts_slopes()
,
ts_sumorder()
,
ts_symbolic()
,
ts_trimfill()
,
ts_windower()