worldboss commited on
Commit
b2becf6
·
1 Parent(s): 7650eb3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md CHANGED
@@ -24,3 +24,36 @@ dataset_info:
24
  download_size: 23261
25
  dataset_size: 49399
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  download_size: 23261
25
  dataset_size: 49399
26
  ---
27
+
28
+
29
+ ### Description
30
+ 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/)
31
+
32
+ Click Here: [![Google Colab Notebook](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1jZo8TUictFbZBCglXWxZPtbVDYtp_eUn?usp=sharing)
33
+
34
+ ### Data Format
35
+ ```shell
36
+ {
37
+ "issue_date": "...",
38
+ "tender": "...",
39
+ "security_type": "...",
40
+ "discount_rate": "...",
41
+ "interest_rate": "..."
42
+ }
43
+ ```
44
+
45
+ ### Load Dataset
46
+ ```shell
47
+ pip install datasets
48
+ ```
49
+
50
+ ```python
51
+ from datasets import load_dataset
52
+
53
+ rates = load_dataset("worldboss/bank-of-ghana-treasury-bills", split="train")
54
+
55
+ ```
56
+
57
+
58
+ ### Author
59
+ The data was constructed by Theophilus Siameh ([email protected]).