dtsf: DTSF

Description Usage Arguments Value Author(s) Examples

View source: R/dtsf.R

Description

Implementation a time series forecasting algorithm.

Usage

1
dtsf(ts, poli, best, window, forecast, reg = FALSE)

Arguments

ts

time series.

poli

an integer defining the degree of the model used.

best

an integer defining how many matches will be used in the forecasting.

window

an integer indicating the size of the window to match.

forecast

number of data points to be forecasted.

reg

logical indicating if series regularization should be performed. Default = FALSE.

Value

a list with three objects:

Author(s)

leandromineti@gmail.com

Examples

1
2
3
4
5
library(DTScanF)

data("curvelo", package = "DTScanF")

res <- dtsf(ts = curvelo$vento, poli = 1, best = 5, window = 24, forecast = 10)

leandromineti/DTScanF documentation built on May 17, 2019, 5:52 p.m.