File size: 1,270 Bytes
5d9fdbc
 
e4cc2f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5d9fdbc
132ba1b
 
1d26f0c
132ba1b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2c23684
132ba1b
 
 
 
 
d6be173
 
 
 
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
---
license: apache-2.0
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: 8593623
    num_examples: 132012
  download_size: 2261669
  dataset_size: 8593623
---

### 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/1jZo8TUictFbZBCglXWxZPtbVDYtp_eUn?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")

```


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