https://github.com/robjhyndman/tscompdata
Time series competition data
https://github.com/robjhyndman/tscompdata
data r time-series
Last synced: about 2 months ago
JSON representation
Time series competition data
- Host: GitHub
- URL: https://github.com/robjhyndman/tscompdata
- Owner: robjhyndman
- Created: 2017-11-28T05:41:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T01:34:42.000Z (almost 2 years ago)
- Last Synced: 2025-04-13T16:08:33.412Z (about 2 months ago)
- Topics: data, r, time-series
- Language: R
- Homepage: http://pkg.robjhyndman.com/tscompdata/
- Size: 10.7 MB
- Stars: 18
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
editor_options:
chunk_output_type: console
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```# tscompdata
The R package *tscompdata* provides time series data from the following forecasting competitions: M, M3, NN3, NN5, NNGC1, Tourism and GEFCom2012.
The M, M3 and Tourism data are loaded from the [Mcomp](http://pkg.robjhyndman.com/Mcomp/) and [Tcomp](https://github.com/ellisp/Tcomp-r-package) packages. The remaining data are contained within the tscompdata package.
## Installation
You can install the **development** version from [Github](https://github.com/robjhyndman/tscompdata) with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("robjhyndman/tscompdata")
```## Usage
```{r nn5}
library(tscompdata)
library(ggplot2)
autoplot(nn5[[23]])
```## License
This package is free and open source software, licensed under GPL-3.