forecast: Interfaces for forecast package for data science pipelines.

Description Usage Arguments Details Value Author(s) Examples

Description

Interfaces to forecast functions that can be used in a pipeline implemented by magrittr.

Usage

1

Arguments

data

data frame, tibble, list, ...

...

Other arguments passed to the corresponding interfaced function.

Details

Interfaces call their corresponding interfaced function.

Value

Object returned by interfaced function.

Author(s)

Roberto Bertolusso

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
## Not run: 
library(intubate)
library(magrittr)
library(forecast)

## ntbt_tslm: Fit a linear model with time series components
dta <- data.frame(y <- ts(rnorm(120,0,3) + 1:120 + 20*sin(2*pi*(1:120)/12), frequency=12))

## Original function to interface
tslm(y ~ trend + season, data = dta)

## The interface puts data as first parameter
ntbt_tslm(dta, y ~ trend + season)

## so it can be used easily in a pipeline.
dta %>%
  ntbt_tslm(y ~ trend + season)

## End(Not run)

Example output

Call:
tslm(formula = y ~ trend + season, data = dta)

Coefficients:
(Intercept)        trend      season2      season3      season4      season5  
     9.2658       1.0056       6.8205      10.8757       7.8926       0.7599  
    season6      season7      season8      season9     season10     season11  
    -8.6736     -19.6230     -25.6376     -30.6411     -26.9180     -21.4686  
   season12  
    -9.7300  


Call:
tslm(formula = y ~ trend + season)

Coefficients:
(Intercept)        trend      season2      season3      season4      season5  
     9.2658       1.0056       6.8205      10.8757       7.8926       0.7599  
    season6      season7      season8      season9     season10     season11  
    -8.6736     -19.6230     -25.6376     -30.6411     -26.9180     -21.4686  
   season12  
    -9.7300  


Call:
tslm(formula = y ~ trend + season)

Coefficients:
(Intercept)        trend      season2      season3      season4      season5  
     9.2658       1.0056       6.8205      10.8757       7.8926       0.7599  
    season6      season7      season8      season9     season10     season11  
    -8.6736     -19.6230     -25.6376     -30.6411     -26.9180     -21.4686  
   season12  
    -9.7300  

intubate documentation built on May 2, 2019, 2:46 p.m.