File size: 1,603 Bytes
5d9fdbc
14c0e85
 
5d9fdbc
14c0e85
 
 
 
 
 
 
 
 
 
 
e4cc2f7
 
 
 
 
 
 
 
 
 
 
bae0923
e4cc2f7
 
 
 
 
bae0923
e4cc2f7
 
 
bae0923
57d38d0
bae0923
 
9116af4
 
 
 
 
 
 
5d9fdbc
132ba1b
6946540
1d26f0c
132ba1b
8e8071c
132ba1b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2c23684
132ba1b
 
 
 
986df20
 
132ba1b
d6be173
 
 
9116af4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
language:
- en
license: apache-2.0
size_categories:
- 100K<n<1M
task_categories:
- conversational
- text-generation
- summarization
- question-answering
- text-classification
- text-retrieval
- translation
pretty_name: No Robots
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
dataset_info:
  features:
  - name: Date
    dtype: string
  - name: Currency
    dtype: string
  - name: Currency_Pair
    dtype: string
  - name: Buying
    dtype: string
  - name: Selling
    dtype: string
  - name: Mid_Rate
    dtype: string
  splits:
  - name: train
    num_bytes: 8628801
    num_examples: 132525
  download_size: 2273117
  dataset_size: 8628801
tags:
- ghana
- news
- ghana-news
- bank-of-ghana
- exchange-rates
- ghana data
---

### Description 🙅‍♂️🤖
Bank of Ghana historical and real-time exchange rates data. [Bank of Ghana](https://www.bog.gov.gh/treasury-and-the-markets/historical-interbank-fx-rates/)

Click Here:[![Google Colab Notebook](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1zZUIyp9zBhwL5CqHS3Ggf5vJCr_yTYw0?usp=sharing)

### Data Format
```shell
{
    "date": "...", 
    "currency": "...", 
    "currency_pair": "...", 
    "buying": "...", 
    "selling": "...", 
    "mid_rate": "..."
}
```

### Load Dataset
```shell
pip install datasets
```

```python
from datasets import load_dataset

rates = load_dataset("worldboss/bank-of-ghana-rates", split="train")

pd.DataFrame(rates).head()

```


### Author
The data was constructed by Theophilus Siameh (theodondre@gmail.com).