Data Available

The package includes the following data sets:

  • Nile River Minima (622-1284). Available as NileRiverMin.csv. The data set contains two columns: Yearand NileMin.

  • Northern Hemisphere monthly temperature anomalies. Available as NorthernHemTemp.csv in a long time series format starting from January 1850.

Loading the Data

The data are stored in CSV files.

Hence, loading the data requires the CSV.jl and DataFrames.jl packages.

You can load the data sets with the following commands:

using LongMemory
NileMin = NileData()
NorthernHemTemp = NHTempData()

Moreover, you can generate plots of the data and associated long memory processes with the following commands:

NileDataPlot()
NHTempDataPlot()

Sources

Documentation for LongMemory.jl.