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.
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
#> ---
#> 2858: 2026-04-24 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
#> 2859: 2026-04-27 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
#> 2860: 2026-04-28 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
#> 2861: 2026-04-29 IUDBEDR 3.75 Official Bank Rate daily Official Bank Rate
#> 2862: 2026-04-30 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
#> ---
#> 2857: 2026-04-23 IUDSOIA 3.7311
#> 2858: 2026-04-24 IUDSOIA 3.7305
#> 2859: 2026-04-27 IUDSOIA 3.7307
#> 2860: 2026-04-28 IUDSOIA 3.7306
#> 2861: 2026-04-29 IUDSOIA 3.7298
#> 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
#> ---
#> 2857: Daily Sterling overnight index average (SONIA) rate daily
#> 2858: Daily Sterling overnight index average (SONIA) rate daily
#> 2859: Daily Sterling overnight index average (SONIA) rate daily
#> 2860: Daily Sterling overnight index average (SONIA) rate daily
#> 2861: 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
#> ---
#> 2857: 2026-04-23 IUDMNPY 4.8710
#> 2858: 2026-04-24 IUDMNPY 4.8790
#> 2859: 2026-04-27 IUDMNPY 4.9195
#> 2860: 2026-04-28 IUDMNPY 4.9493
#> 2861: 2026-04-29 IUDMNPY 5.0053
#> 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
#> ---
#> 2857: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2858: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2859: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2860: Yield from British Government Securities, 10 year Nominal Par Yield
#> 2861: 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
#> ---
#> 2857: daily Not seasonally adjusted Yield Percent Sterling
#> 2858: daily Not seasonally adjusted Yield Percent Sterling
#> 2859: daily Not seasonally adjusted Yield Percent Sterling
#> 2860: daily Not seasonally adjusted Yield Percent Sterling
#> 2861: 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
#> ---
#> 2857: Nominal par yield, 10 year
#> 2858: Nominal par yield, 10 year
#> 2859: Nominal par yield, 10 year
#> 2860: Nominal par yield, 10 year
#> 2861: 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
#> ---
#> 142: 2021-12-31 IUALBEDR 0.25 End year official Bank Rate annual
#> 143: 2022-12-31 IUALBEDR 3.50 End year official Bank Rate annual
#> 144: 2023-12-31 IUALBEDR 5.25 End year official Bank Rate annual
#> 145: 2024-12-31 IUALBEDR 4.75 End year official Bank Rate annual
#> 146: 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
#> ---
#> 142: <NA> Interest rate Percent Sterling
#> 143: <NA> Interest rate Percent Sterling
#> 144: <NA> Interest rate Percent Sterling
#> 145: <NA> Interest rate Percent Sterling
#> 146: <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
#> ---
#> 142: Official Bank Rate
#> 143: Official Bank Rate
#> 144: Official Bank Rate
#> 145: Official Bank Rate
#> 146: Official Bank Rate
# }