Retrieve time series data from the BoE database.
Usage
boe_data(key, start_date, end_date = Sys.Date())Arguments
- key
(
character())
The series keys to query.- start_date
(
character(1)|Date(1))
Start date of the data.- end_date
(
character(1)|Date(1))
End date of the data. Default is today's date.
Value
A data.table::data.table() with the requested data.
See also
Other data:
banxico_data(),
bbk_data(),
bbk_series(),
bcb_data(),
bcb_expectations(),
bcb_fx_rates(),
bcb_inflation(),
bcb_selic(),
bcb_top5(),
bde_data(),
bde_latest(),
bdf_codelist(),
bdf_data(),
bdf_dataset(),
bdp_data(),
bis_data(),
boc_data(),
boj_data(),
cnb_czeonia(),
cnb_data(),
cnb_fx_other_rates(),
cnb_fx_rates(),
cnb_pribor(),
ecb_data(),
nbp_fx_rates(),
nbp_gold(),
nob_data(),
onb_data(),
snb_data(),
srb_cross_rates(),
srb_data()
Examples
# \donttest{
# Bank Rate
boe_data("IUDBEDR", "2015-01-01")
#> date key value description freq instruments
#> <Date> <char> <num> <char> <char> <char>
#> 1: 2015-01-02 IUDBEDR 0.50 Official Bank Rate daily Official Bank Rate
#> 2: 2015-01-05 IUDBEDR 0.50 Official Bank Rate daily Official Bank Rate
#> 3: 2015-01-06 IUDBEDR 0.50 Official Bank Rate daily Official Bank Rate
#> 4: 2015-01-07 IUDBEDR 0.50 Official Bank Rate daily Official Bank Rate
#> 5: 2015-01-08 IUDBEDR 0.50 Official Bank Rate daily Official Bank Rate
#> ---
#> 2897: 2026-06-22 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
#> 2898: 2026-06-23 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
#> 2899: 2026-06-24 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
#> 2900: 2026-06-25 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
#> 2901: 2026-06-26 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
# SONIA daily rate
boe_data("IUDSOIA", "2015-01-01")
#> date key value
#> <Date> <char> <num>
#> 1: 2015-01-02 IUDSOIA 0.4316
#> 2: 2015-01-05 IUDSOIA 0.4335
#> 3: 2015-01-06 IUDSOIA 0.4300
#> 4: 2015-01-07 IUDSOIA 0.4292
#> 5: 2015-01-08 IUDSOIA 0.4339
#> ---
#> 2896: 2026-06-19 IUDSOIA 3.7294
#> 2897: 2026-06-22 IUDSOIA 3.7292
#> 2898: 2026-06-23 IUDSOIA 3.7295
#> 2899: 2026-06-24 IUDSOIA 3.7290
#> 2900: 2026-06-25 IUDSOIA 3.7287
#> description freq
#> <char> <char>
#> 1: Daily Sterling overnight index average (SONIA) rate daily
#> 2: Daily Sterling overnight index average (SONIA) rate daily
#> 3: Daily Sterling overnight index average (SONIA) rate daily
#> 4: Daily Sterling overnight index average (SONIA) rate daily
#> 5: Daily Sterling overnight index average (SONIA) rate daily
#> ---
#> 2896: Daily Sterling overnight index average (SONIA) rate daily
#> 2897: Daily Sterling overnight index average (SONIA) rate daily
#> 2898: Daily Sterling overnight index average (SONIA) rate daily
#> 2899: Daily Sterling overnight index average (SONIA) rate daily
#> 2900: Daily Sterling overnight index average (SONIA) rate daily
# 10-year nominal par yield
boe_data("IUDMNPY", "2015-01-01")
#> date key value
#> <Date> <char> <num>
#> 1: 2015-01-02 IUDMNPY 1.7846
#> 2: 2015-01-05 IUDMNPY 1.7162
#> 3: 2015-01-06 IUDMNPY 1.6465
#> 4: 2015-01-07 IUDMNPY 1.6584
#> 5: 2015-01-08 IUDMNPY 1.6970
#> ---
#> 2896: 2026-06-19 IUDMNPY 4.7213
#> 2897: 2026-06-22 IUDMNPY 4.7830
#> 2898: 2026-06-23 IUDMNPY 4.7322
#> 2899: 2026-06-24 IUDMNPY 4.6683
#> 2900: 2026-06-25 IUDMNPY 4.6820
#> description
#> <char>
#> 1: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2: Yield from British Government Securities, 10 year Nominal Par Yield
#> 3: Yield from British Government Securities, 10 year Nominal Par Yield
#> 4: Yield from British Government Securities, 10 year Nominal Par Yield
#> 5: Yield from British Government Securities, 10 year Nominal Par Yield
#> ---
#> 2896: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2897: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2898: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2899: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2900: Yield from British Government Securities, 10 year Nominal Par Yield
#> freq seasonal_adjustment type output_in instrument_currency
#> <char> <char> <char> <char> <char>
#> 1: daily Not seasonally adjusted Yield Percent Sterling
#> 2: daily Not seasonally adjusted Yield Percent Sterling
#> 3: daily Not seasonally adjusted Yield Percent Sterling
#> 4: daily Not seasonally adjusted Yield Percent Sterling
#> 5: daily Not seasonally adjusted Yield Percent Sterling
#> ---
#> 2896: daily Not seasonally adjusted Yield Percent Sterling
#> 2897: daily Not seasonally adjusted Yield Percent Sterling
#> 2898: daily Not seasonally adjusted Yield Percent Sterling
#> 2899: daily Not seasonally adjusted Yield Percent Sterling
#> 2900: daily Not seasonally adjusted Yield Percent Sterling
#> instruments
#> <char>
#> 1: Nominal par yield, 10 year
#> 2: Nominal par yield, 10 year
#> 3: Nominal par yield, 10 year
#> 4: Nominal par yield, 10 year
#> 5: Nominal par yield, 10 year
#> ---
#> 2896: Nominal par yield, 10 year
#> 2897: Nominal par yield, 10 year
#> 2898: Nominal par yield, 10 year
#> 2899: Nominal par yield, 10 year
#> 2900: Nominal par yield, 10 year
# multiple series
boe_data(c("IUMABEDR", "IUALBEDR"), "2015-01-01")
#> date key value description freq
#> <Date> <char> <num> <char> <char>
#> 1: 2015-01-31 IUMABEDR 0.50 Monthly average of official Bank Rate monthly
#> 2: 2015-02-28 IUMABEDR 0.50 Monthly average of official Bank Rate monthly
#> 3: 2015-03-31 IUMABEDR 0.50 Monthly average of official Bank Rate monthly
#> 4: 2015-04-30 IUMABEDR 0.50 Monthly average of official Bank Rate monthly
#> 5: 2015-05-31 IUMABEDR 0.50 Monthly average of official Bank Rate monthly
#> ---
#> 144: 2021-12-31 IUALBEDR 0.25 End year official Bank Rate annual
#> 145: 2022-12-31 IUALBEDR 3.50 End year official Bank Rate annual
#> 146: 2023-12-31 IUALBEDR 5.25 End year official Bank Rate annual
#> 147: 2024-12-31 IUALBEDR 4.75 End year official Bank Rate annual
#> 148: 2025-12-31 IUALBEDR 3.75 End year official Bank Rate annual
#> seasonal_adjustment type output_in instrument_currency
#> <char> <char> <char> <char>
#> 1: Not seasonally adjusted Interest rate Percent Sterling
#> 2: Not seasonally adjusted Interest rate Percent Sterling
#> 3: Not seasonally adjusted Interest rate Percent Sterling
#> 4: Not seasonally adjusted Interest rate Percent Sterling
#> 5: Not seasonally adjusted Interest rate Percent Sterling
#> ---
#> 144: <NA> Interest rate Percent Sterling
#> 145: <NA> Interest rate Percent Sterling
#> 146: <NA> Interest rate Percent Sterling
#> 147: <NA> Interest rate Percent Sterling
#> 148: <NA> Interest rate Percent Sterling
#> instruments
#> <char>
#> 1: Official Bank Rate
#> 2: Official Bank Rate
#> 3: Official Bank Rate
#> 4: Official Bank Rate
#> 5: Official Bank Rate
#> ---
#> 144: Official Bank Rate
#> 145: Official Bank Rate
#> 146: Official Bank Rate
#> 147: Official Bank Rate
#> 148: Official Bank Rate
# }