Update README.md
Browse files
README.md
CHANGED
@@ -23,6 +23,13 @@ This dataset scrapes TidyTuesday datasets from 2023-2024, aiming to make resourc
|
|
23 |
|
24 |
## Dataset Details
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
### Dataset Description
|
27 |
|
28 |
- **Curated by:** Holly Cui @[hollyyfc](https://hollyyfc.github.io/)
|
@@ -43,9 +50,9 @@ This dataset scrapes TidyTuesday datasets from 2023-2024, aiming to make resourc
|
|
43 |
|
44 |
The dataset is stored in both JSON nested hierarchical structure and CSV format.
|
45 |
|
46 |
-
- Full set
|
47 |
-
- Train set
|
48 |
-
- Validation set
|
49 |
|
50 |
### Data Instances
|
51 |
|
|
|
23 |
|
24 |
## Dataset Details
|
25 |
|
26 |
+
### Load Dataset
|
27 |
+
|
28 |
+
```python
|
29 |
+
from datasets import load_dataset
|
30 |
+
dataset = load_dataset("hollyyfc/tidytuesday_for_python")
|
31 |
+
```
|
32 |
+
|
33 |
### Dataset Description
|
34 |
|
35 |
- **Curated by:** Holly Cui @[hollyyfc](https://hollyyfc.github.io/)
|
|
|
50 |
|
51 |
The dataset is stored in both JSON nested hierarchical structure and CSV format.
|
52 |
|
53 |
+
- **Full set**: "full" in loaded datasets | `tidytuesday_json.json` and `tidytuesday_2023_2024.csv` on GitHub
|
54 |
+
- **Train set**: "train" in loaded datasets | `tidytuesday_json_train.json` and `tidytuesday_train.csv` on GitHub
|
55 |
+
- **Validation set**: "validation" in loaded datasets | `tidytuesday_json_val.json` and `tidytuesday_val.csv` on GitHub
|
56 |
|
57 |
### Data Instances
|
58 |
|