View source: R/boe_mpc_votes.R
| boe_mpc_votes | R Documentation |
Downloads the Bank of England's published MPC voting record and returns it in long format. Each row is one (meeting, member) pair showing the rate the member voted for and whether that constituted a dissent from the committee's decision.
boe_mpc_votes(cache = TRUE)
cache |
Logical. Use cached download if less than 24 hours old
(default |
Coverage runs from the first MPC meeting in June 1997 through the most recent published minutes. Both current and past committee members are included.
Requires the readxl package.
A boe_tbl data frame with columns:
Date. Meeting date.
Character. MPC member name.
Numeric. The Bank Rate the member voted for (percent).
Numeric. The committee's decision (percent).
Logical. TRUE if the member's vote differed from
the committee decision.
https://www.bankofengland.co.uk/monetary-policy
boe_mpc_decisions()
Other monetary policy:
boe_mpc_decisions(),
boe_mpr_forecasts()
if (requireNamespace("readxl", quietly = TRUE)) {
op <- options(boe.cache_dir = tempdir())
votes <- boe_mpc_votes()
# Recent dissents
recent <- subset(votes, dissent & date >= as.Date("2024-01-01"))
head(recent)
options(op)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.