Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -9,16 +9,20 @@ tags:
|
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
---
|
12 |
-
# Anime Watchers Dataset (1960โ2025)
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
17 |
|
18 |
---
|
19 |
|
20 |
## ๐ Overview
|
21 |
This dataset contains **10,000 synthetic profiles of anime watchers**, spanning from the **Classic Era (1960sโ1989)** to the **Modern Era (2010โ2025)**.
|
|
|
22 |
It is designed for:
|
23 |
- **Data Analysis**
|
24 |
- **Machine Learning**
|
@@ -46,9 +50,12 @@ Each record represents an individual anime watcher with detailed attributes:
|
|
46 |
|
47 |
---
|
48 |
|
49 |
-
## โ
Example Usage
|
50 |
```python
|
51 |
from datasets import load_dataset
|
52 |
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
9 |
size_categories:
|
10 |
- 1K<n<10K
|
11 |
---
|
|
|
12 |
|
13 |
+

|
14 |
+
|
15 |
+
# ๐บ Anime Watchers Dataset (1960โ2025)
|
16 |
+
|
17 |
+
**๐ฆ Dataset Size:** 10,000 Records
|
18 |
+
**๐ Format:** CSV
|
19 |
+
**๐ License:** CC-BY-4.0
|
20 |
|
21 |
---
|
22 |
|
23 |
## ๐ Overview
|
24 |
This dataset contains **10,000 synthetic profiles of anime watchers**, spanning from the **Classic Era (1960sโ1989)** to the **Modern Era (2010โ2025)**.
|
25 |
+
|
26 |
It is designed for:
|
27 |
- **Data Analysis**
|
28 |
- **Machine Learning**
|
|
|
50 |
|
51 |
---
|
52 |
|
53 |
+
## โ
Example Usage in Python
|
54 |
```python
|
55 |
from datasets import load_dataset
|
56 |
|
57 |
+
# Load the dataset
|
58 |
+
dataset = load_dataset("Mikey-TraceGod/Anime-Viewers-Data")
|
59 |
+
|
60 |
+
# Access first example
|
61 |
+
print(dataset['train'][0])
|