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). |