Skip to content

tidyverts/feasts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

feasts

Travis build status

The R package feasts munches on tidy temporal data (tsibble) to produce time series features, decompositions, statistical summaries and convenient visualisations.

The features offered by feasts are essential for the fable modelling workflow. It includes convenient functions for exploration prior to modelling, and evaluation after modelling.

Installation

You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("tidyverts/feasts")

Example

library(feasts)
library(tsibbledata)
#> Loading required package: tsibble
#> 
#> Attaching package: 'tsibble'
#> The following object is masked from 'package:stats':
#> 
#>     filter
elecdemand %>% 
  ACF(Temperature, lag.max=48) %>%
  autoplot