# \[ANN\] ForecastData: Time Series Datasets for Julia

**URL:** https://discourse.julialang.org/t/ann-forecastdata-time-series-datasets-for-julia/69285
**Category:** Package Announcements
**Tags:** time-series
**Created:** [October 6, 2021, 8:53am UTC](https://discourse.julialang.org/t/ann-forecastdata-time-series-datasets-for-julia/69285 "2021-10-06T08:53:07Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![viraltux](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/viraltux/32/15236_2.png) [@viraltux](https://discourse.julialang.org/u/viraltux)
#### Post date: [October 6, 2021, 8:53am UTC](https://discourse.julialang.org/t/ann-forecastdata-time-series-datasets-for-julia/69285/1 "2021-10-06T08:53:07Z")

</div>

[ForecastData.lj](https://github.com/viraltux/ForecastData.jl) has been created in the process of decoupling functionality from [Forecast.jl](https://github.com/viraltux/Forecast.jl).

This package handles access to small to medium size time series datasets (in the Megabytes) to be used in Julia.

Since the number of datasets could be potentially large and relatively big in size they are not downloaded when the package is installed, but only when they are called to then be stored locally as a Julia artifact.

The format chosen to return the time series is via a [DataFrame](https://dataframes.juliadata.org/stable/) with its first column using [Dates](https://docs.julialang.org/en/v1/stdlib/Dates/) when appropiate.

In general time series available in ForecastData will be “unique” in one of these two ways:

- They are a combination of publicly available datasets (e.g. `london` dataset)
- They are publicly available datasets with some preparation to facilitate their use (e.g. `quakes` dataset)

Simple publicly available datasets will not be generally considered, for instance [R](https://cran.r-project.org/) datasets like `AirPassengers` will not be stored in ForecastData since they can be easily accessed via [RCall](https://github.com/JuliaInterop/RCall.jl).

The current available datasets are:

| Name | Description |
| --- | --- |
| **co2** | Atmospheric Carbon Dioxide Dry Air Mole Fractions from quasi-continuous measurements at Mauna Loa, Hawaii from 1973 to 2020 |
| **london** | Monthly data on weather and crime in Greater London from 2008 to 2018 |
| **quakes** | Earthquakes with a magnitude higher or equal to six from 1638-06-11 to 2021-10-02 |
| **seaborne** | Seaborne trade for France, Germany and the United Kingdom from 2015-04-01 to 2021-05-02 |

```julia

```

---

<div class="post-metadata">

### Author: ![Storopoli](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/storopoli/32/209278_2.png) [@Storopoli](https://discourse.julialang.org/u/Storopoli)
#### Post date: [October 6, 2021, 10:33am UTC](https://discourse.julialang.org/t/ann-forecastdata-time-series-datasets-for-julia/69285/2 "2021-10-06T10:33:18Z")

</div>

The link is pointing towards `ForecastPlots.jl`

EDIT: Nice work in the whole Forecast\*.jl package families.  
I am using in a Time Series lecture on scientific computing and data science with Julia

---

<div class="post-metadata">

### Author: ![viraltux](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/viraltux/32/15236_2.png) [@viraltux](https://discourse.julialang.org/u/viraltux)
#### Post date: [October 6, 2021, 1:38pm UTC](https://discourse.julialang.org/t/ann-forecastdata-time-series-datasets-for-julia/69285/3 "2021-10-06T13:38:36Z")

</div>

> [@Storopoli](#):
>
> The link is pointing towards `ForecastPlots.jl`

I fixed it, thanks!

> [@Storopoli](#):
>
> EDIT: Nice work in the whole Forecast\*.jl package families.  
> I am using in a Time Series lecture on scientific computing and data science with Julia

wow! This made my day! Thank you for letting me know @Storopoli! ❤

Actually, the idea behind the future `Forecast.jl v.0.2.0` is to integrate all these decoupled packages (and possibly more) to create an analytical environment for time series analysis that would be friendly for introductory courses. After publishing v.0.2.0 I was planning on asking feedback if anybody (professors and students) was using it for lectures but there you are in version v.01.0! Although future version v0.2.0 will be quite different; hopefully better and friendlier, any suggestions to improve usability are very welcome!

By the way, since we are at it, soon I’ll be announcing a new package in these decoupling series work that might be useful for your lectures too: [GitHub - viraltux/DataWrangler.jl: Data transformation tools for analytics](https://github.com/viraltux/DataWrangler.jl) , it’s nearly finished so you can have a go at it already.

---

<div class="post-metadata">

### Author: ![Storopoli](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/storopoli/32/209278_2.png) [@Storopoli](https://discourse.julialang.org/u/Storopoli)
#### Post date: [October 6, 2021, 1:45pm UTC](https://discourse.julialang.org/t/ann-forecastdata-time-series-datasets-for-julia/69285/4 "2021-10-06T13:45:10Z")

</div>

> [@viraltux](#):
>
> wow! This made my day! Thank you for letting me know @Storopoli

Here it is the Lecture. It is in Portuguese. It will be presented not this Friday, but next Friday. So if you have suggestions there is time to incoporate them.

[https://storopoli.io/Computacao-Cientifica/5\_TimeSeries/](https://storopoli.io/Computacao-Cientifica/5_TimeSeries/)
