- Notifications
You must be signed in to change notification settings - Fork29
Feature Extraction And Statistics for Time Series
tidyverts/feasts
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
feasts provides a collection of tools for the analysis of time seriesdata. The package name is an acronym comprising of its key features:Feature Extraction And Statistics for Time Series.
The package works with tidy temporal data provided by thetsibble package to produce timeseries features, decompositions, statistical summaries and convenientvisualisations. These features are useful in understanding the behaviourof time series data, and closely integrates with the tidy forecastingworkflow used in thefablepackage.
You could install thestable version fromCRAN:
install.packages("feasts")You can install thedevelopment version fromGitHub with:
# install.packages("remotes")remotes::install_github("tidyverts/feasts")
library(feasts)library(tsibble)library(tsibbledata)library(dplyr)library(ggplot2)library(lubridate)
Visualisation is often the first step in understanding the patterns intime series data. The package usesggplot2 to produce customisablegraphics to visualise time series patterns.
aus_production %>% gg_season(Beer)
aus_production %>% gg_subseries(Beer)
aus_production %>% filter(year(Quarter)>1991) %>% gg_lag(Beer)
aus_production %>% ACF(Beer) %>% autoplot()
A common task in time series analysis is decomposing a time series intosome simpler components. The feasts package supports two common timeseries decomposition methods:
- Classical decomposition
- STL decomposition
dcmp<-aus_production %>% model(STL(Beer~ season(window=Inf)))components(dcmp)#> # A dable: 218 x 7 [1Q]#> # Key: .model [1]#> # : Beer = trend + season_year + remainder#> .model Quarter Beer trend season_year remainder season_adjust#> <chr> <qtr> <dbl> <dbl> <dbl> <dbl> <dbl>#> 1 STL(Beer ~ season(window = Inf)) 1956 Q1 284 272. 2.14 10.1 282.#> 2 STL(Beer ~ season(window = Inf)) 1956 Q2 213 264. -42.6 -8.56 256.#> 3 STL(Beer ~ season(window = Inf)) 1956 Q3 227 258. -28.5 -2.34 255.#> 4 STL(Beer ~ season(window = Inf)) 1956 Q4 308 253. 69.0 -14.4 239.#> 5 STL(Beer ~ season(window = Inf)) 1957 Q1 262 257. 2.14 2.55 260.#> 6 STL(Beer ~ season(window = Inf)) 1957 Q2 228 261. -42.6 9.47 271.#> 7 STL(Beer ~ season(window = Inf)) 1957 Q3 236 263. -28.5 1.80 264.#> 8 STL(Beer ~ season(window = Inf)) 1957 Q4 320 264. 69.0 -12.7 251.#> 9 STL(Beer ~ season(window = Inf)) 1958 Q1 272 266. 2.14 4.32 270.#> 10 STL(Beer ~ season(window = Inf)) 1958 Q2 233 266. -42.6 9.72 276.#> # i 208 more rows
components(dcmp) %>% autoplot()
Extract features and statistics across a large collection of time seriesto identify unusual/extreme time series, or find clusters of similarbehaviour.
aus_retail %>% features(Turnover,feat_stl)#> # A tibble: 152 x 11#> State Industry trend_strength seasonal_strength_year seasonal_peak_year seasonal_trough_year#> <chr> <chr> <dbl> <dbl> <dbl> <dbl>#> 1 Australia~ Cafes, ~ 0.989 0.562 0 10#> 2 Australia~ Cafes, ~ 0.993 0.629 0 10#> 3 Australia~ Clothin~ 0.991 0.923 9 11#> 4 Australia~ Clothin~ 0.993 0.957 9 11#> 5 Australia~ Departm~ 0.977 0.980 9 11#> 6 Australia~ Electri~ 0.992 0.933 9 11#> 7 Australia~ Food re~ 0.999 0.890 9 11#> 8 Australia~ Footwea~ 0.982 0.944 9 11#> 9 Australia~ Furnitu~ 0.981 0.687 9 1#> 10 Australia~ Hardwar~ 0.992 0.900 9 4#> # i 142 more rows#> # i 5 more variables: spikiness <dbl>, linearity <dbl>, curvature <dbl>, stl_e_acf1 <dbl>,#> # stl_e_acf10 <dbl>
This allows you to visualise the behaviour of many time series (wherethe plotting methods above would show too much information).
aus_retail %>% features(Turnover,feat_stl) %>% ggplot(aes(x=trend_strength,y=seasonal_strength_year))+ geom_point()+ facet_wrap(vars(State))
Most of Australian’s retail industries are highly trended and seasonalfor all states.
It’s also easy to extract the most (and least) seasonal time series.
extreme_seasonalities<-aus_retail %>% features(Turnover,feat_stl) %>% filter(seasonal_strength_year%in% range(seasonal_strength_year))aus_retail %>% right_join(extreme_seasonalities,by= c("State","Industry")) %>% ggplot(aes(x=Month,y=Turnover))+ geom_line()+ facet_grid(vars(State,Industry,scales::percent(seasonal_strength_year)),scales="free_y")
About
Feature Extraction And Statistics for Time Series
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors8
Uh oh!
There was an error while loading.Please reload this page.







