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)

rbertolusso/intubate documentation built on May 27, 2019, 3 a.m.