butlerj commited on
Commit
6ca989d
·
verified ·
1 Parent(s): 97d2f88

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - pandas
6
+ - csv
7
+ - tabular
8
+ pretty_name: Iris
9
+ size_categories:
10
+ - n<1K
11
+ ---
12
+
13
+ # Iris
14
+
15
+ 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).
16
+
17
+ ```
18
+ import pandas as pd
19
+
20
+ dat = pd.read_csv('data/iris.csv')
21
+ ```