Datasets:

butlerj commited on
Commit
e18c9ab
·
verified ·
1 Parent(s): ed0c8d6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Iris
3
+ language:
4
+ - en
5
+ size_categories:
6
+ - n<1K
7
+ tags:
8
+ - csv
9
+ - biology
10
+ ---
11
+
12
+ # Iris
13
+
14
+ The following code can be used to load the dataset from its stored location at NERSC.
15
+
16
+ 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).
17
+ ```
18
+ # Iris data loader
19
+
20
+ import pandas as pd
21
+ iris_dat = pd.read_csv('/global/cfs/cdirs/dasrepo/www/ai_ready_datasets/iris/data/iris.csv')
22
+ ```
23
+
24
+ If you would like to download the data, visit the following link:
25
+
26
+ https://portal.nersc.gov/cfs/dasrepo/ai_ready_datasets/iris/data
27
+