# `Explorer.Datasets`
[🔗](https://github.com/elixir-nx/explorer/blob/v0.12.0/lib/explorer/datasets.ex#L1)

Datasets used in examples and exploration.

Note those datasets are not available inside Elixir releases
(see `mix release`), which is the usual way to deploy Elixir
in production. Therefore, if you need one of those datasets
in production, you must download the source files to your
own application `priv` directory and load them yourself.
For example:

    Explorer.DataFrame.from_csv!(Application.app_dir(:my_app, "priv/iris.csv"))

# `fossil_fuels`

CO2 emissions from fossil fuels since 2010, by country

## Citation

    Boden, T.A., G. Marland, and R.J. Andres. 2013. Global, Regional, and National Fossil-Fuel CO2
    Emissions. Carbon Dioxide Information Analysis Center, Oak Ridge National Laboratory, U.S.
    Department of Energy, Oak Ridge, Tenn., U.S.A. doi 10.3334/CDIAC/00001_V2013

# `iris`

Iris Dataset.

This classic dataset was collected by Edgar Anderson in 1936
and made famous by R. A. Fisher's 1936 paper. It consists of
several measurements of three species of Iris (Iris setosa,
Iris virginica and Iris versicolor).

Downloaded and modified from: https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data

## Citation

    Fisher,R. A.. (1988). Iris. UCI Machine Learning Repository. https://doi.org/10.24432/C56C76.

# `wine`

Wine Dataset.

The data is the result of a chemical analysis of wines grown in the same
region in Italy but derived from three different cultivars. The analysis
determined the quantities of 13 constituents found in each of the three
types of wines.

Downloaded and modified from: https://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data

## Citation

    Aeberhard,Stefan and Forina,M.. (1991). Wine. UCI Machine Learning Repository. https://doi.org/10.24432/C5PC7J.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
