Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,31 @@
|
|
1 |
---
|
2 |
license: afl-3.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: afl-3.0
|
3 |
+
task_categories:
|
4 |
+
- text-generation
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
tags:
|
8 |
+
- ghana
|
9 |
+
- electricity
|
10 |
+
size_categories:
|
11 |
+
- 1K<n<10K
|
12 |
---
|
13 |
+
|
14 |
+
|
15 |
+
### Load Dataset
|
16 |
+
```shell
|
17 |
+
pip install datasets
|
18 |
+
```
|
19 |
+
|
20 |
+
```python
|
21 |
+
from datasets import load_dataset
|
22 |
+
|
23 |
+
electricity = load_dataset("worldboss/electricity-prices", split="train")
|
24 |
+
|
25 |
+
pd.DataFrame(electricity).head()
|
26 |
+
|
27 |
+
```
|
28 |
+
|
29 |
+
|
30 |
+
### Author
|
31 |
+
The data was constructed by Theophilus Siameh ([email protected]).
|