tidyverts / ggtime

R package for the visualisation of time series
GNU General Public License v3.0
5 stars 0 forks source link

ggtime

Lifecycle:
experimental CRAN
status

The ggtime package provides tools for graphically analysing time series, with exploration of trend and seasonality. It utilises the tsibble data format for time series and produces plots with ggplot2.

Installation

You can install the development version of ggtime from GitHub with:

# install.packages("remotes")
remotes::install_github("tidyverts/ggtime")

Example

library(ggtime)
library(tsibble)
#> 
#> Attaching package: 'tsibble'
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, union
tsibbledata::aus_production %>% 
  autoplot(Bricks)
#> Warning: Removed 20 rows containing missing values (`geom_line()`).