View source: R/boe_bank_rate.R
| boe_bank_rate | R Documentation |
Downloads the official Bank Rate (base interest rate) set by the Monetary Policy Committee. Available as a daily series from January 1975.
boe_bank_rate(
from = "1975-01-02",
to = Sys.Date(),
frequency = c("daily", "monthly"),
cache = TRUE
)
from |
Date or character (YYYY-MM-DD). Start date. Defaults to
|
to |
Date or character (YYYY-MM-DD). End date. Defaults to today. |
frequency |
Character. One of |
cache |
Logical. Use cached data if available (default |
A data frame with columns:
Date. Observation date.
Numeric. Bank Rate (percent).
https://www.bankofengland.co.uk/boeapps/database/
# Bank Rate since 2000
boe_bank_rate(from = "2000-01-01")
# Monthly average
boe_bank_rate(from = "2020-01-01", frequency = "monthly")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.