Data Available
The package includes the following data sets:
Nile River Minima (622-1284). Available as
NileRiverMin.csv
. The data set contains two columns:Year
andNileMin
.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
- Northern Hemisphere Temperature Anomaly: GISTEMP. Morice et al. (2021)
Documentation for LongMemory.jl.