ts_fil_smooth {tspredit}R Documentation

Time Series Smooth

Description

Used to remove or reduce randomness (noise).

Usage

ts_fil_smooth()

Value

a ts_fil_smooth object.

Examples

# time series with noise
library(daltoolbox)
data(sin_data)
sin_data$y[9] <- 2*sin_data$y[9]

# filter
filter <- ts_fil_smooth()
filter <- fit(filter, sin_data$y)
y <- transform(filter, sin_data$y)

# plot
plot_ts_pred(y=sin_data$y, yadj=y)

[Package tspredit version 1.0.767 Index]