bbk_data | R Documentation |
Returns Bundesbank data for a given flow and key
bbk_data(
flow,
key = NULL,
start_period = NULL,
end_period = NULL,
first_n = NULL,
last_n = NULL
)
flow |
|
key |
|
start_period |
|
end_period |
|
first_n |
|
last_n |
|
A data.frame()
with the requested data.
Other data:
bbk_series()
,
ecb_data()
# fetch all data for a given flow and key
bbk_data("BBSIS", "D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A")
# fetch data for multiple keys
bbk_data("BBK01", c("TTA032", "TTA010"))
# specified period (start date-end date) for daily data
bbk_data(
"BBSIS", "D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A",
start_period = "2020-01-01",
end_period = "2020-08-01"
)
# or only specify the start date
bbk_data(
"BBSIS", "D.I.ZAR.ZI.EUR.S1311.B.A604.R10XX.R.A.A._Z._Z.A",
start_period = "2024-04-01"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.