File size: 456 Bytes
6ca989d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
language:
- en
tags:
- pandas
- csv
- tabular
pretty_name: Iris
size_categories:
- n<1K
---

# Iris

The following code can be used to access the dataset from its stored location at NERSC. You may also access this code via a NERSC-hosted Jupyter notebook [here](https://jupyter.nersc.gov/hub/user-redirect/lab/tree/global/cfs/cdirs/dasrepo/ai_ready_datasets/iris/iris_dataloader.ipynb).

```
import pandas as pd

dat = pd.read_csv('data/iris.csv')
```