Learn R Programming

daltoolbox (version 1.1.727)

ts_norm_diff: Time Series Diff

Description

This function calculates the difference between the values of a time series.

Usage

ts_norm_diff(remove_outliers = TRUE)

Value

returns a ts_norm_diff object.

Arguments

remove_outliers

logical: if TRUE (default) outliers will be removed.

Examples

Run this code
# time series to normalize
data(sin_data)

# convert to sliding windows
ts <- ts_data(sin_data$y, 10)
ts_head(ts, 3)
summary(ts[,10])

# normalization
preproc <- ts_norm_diff()
preproc <- fit(preproc, ts)
tst <- transform(preproc, ts)
ts_head(tst, 3)
summary(tst[,9])

Run the code above in your browser using DataLab