language: | |
- en | |
license: apache-2.0 | |
size_categories: | |
- 10K<n<100K | |
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: Oper Day | |
dtype: string | |
- name: Hour Ending | |
dtype: int64 | |
- name: HB_BUSAVG | |
dtype: float64 | |
- name: HB_HOUSTON | |
dtype: float64 | |
- name: HB_HUBAVG | |
dtype: float64 | |
- name: HB_NORTH | |
dtype: float64 | |
- name: HB_PAN | |
dtype: float64 | |
- name: HB_SOUTH | |
dtype: float64 | |
- name: HB_WEST | |
dtype: float64 | |
- name: LZ_AEN | |
dtype: float64 | |
- name: LZ_CPS | |
dtype: float64 | |
- name: LZ_HOUSTON | |
dtype: float64 | |
- name: LZ_LCRA | |
dtype: float64 | |
- name: LZ_NORTH | |
dtype: float64 | |
- name: LZ_RAYBN | |
dtype: float64 | |
- name: LZ_SOUTH | |
dtype: float64 | |
- name: LZ_WEST | |
dtype: float64 | |
splits: | |
- name: train | |
num_bytes: 23352 | |
num_examples: 168 | |
download_size: 24020 | |
dataset_size: 23352 | |
tags: | |
- ghana | |
- news | |
- ghana-news | |
- bank-of-ghana | |
- exchange-rates | |
- ghana data | |
- bank of ghana | |
### Description π ββοΈπ€ | |
Bank of Ghana historical and real-time treasury bills data. [Bank of Ghana](https://www.bog.gov.gh/treasury-and-the-markets/treasury-bill-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 | |
{ | |
"issue_date": "...", | |
"tender": "...", | |
"security_type": "...", | |
"discount_rate": "...", | |
"interest_rate": "..." | |
} | |
``` | |
### Load Dataset | |
```shell | |
pip install datasets | |
``` | |
```python | |
from datasets import load_dataset | |
treasury = load_dataset("worldboss/bank-of-ghana-treasury-bills", split="train") | |
pd.DataFrame(treasury).head() | |
``` | |
### Author | |
The data was constructed by Theophilus Siameh ([email protected]). |