View source: R/boe_mpc_decisions.R
| boe_mpc_decisions | R Documentation |
Returns the history of Monetary Policy Committee decisions to change
Bank Rate, derived from the daily Bank Rate series. Each row is one
rate-change event, showing the effective date, the new rate, the
previous rate, and the change in basis points. Holds (meetings where
the rate was unchanged) are not included; for the full meeting-level
record including holds, see boe_mpc_votes().
boe_mpc_decisions(from = "1997-06-06", to = Sys.Date(), cache = TRUE)
from |
Date or character. Start date. Defaults to
|
to |
Date or character. End date. Defaults to today. |
cache |
Logical. Use cached Bank Rate data if available
(default |
A boe_tbl data frame with columns:
Date. Effective date of the rate change.
Numeric. Bank Rate after the decision (percent).
Numeric. Bank Rate before the decision (percent).
Integer. Change in basis points (positive = hike, negative = cut).
Character. "hike" or "cut".
Derived from BoE series IUDBEDR (daily Bank Rate). See
https://www.bankofengland.co.uk/monetary-policy.
boe_bank_rate(), boe_mpc_votes()
Other monetary policy:
boe_mpc_votes(),
boe_mpr_forecasts()
op <- options(boe.cache_dir = tempdir())
# All MPC decisions since the global financial crisis
boe_mpc_decisions(from = "2007-01-01")
# Just decisions in 2024 to date
boe_mpc_decisions(from = "2024-01-01")
options(op)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.