A convenience wrapper around econdatasets::ed_get() that retrieves
tables from the World Bank International Debt Statistics (IDS) dataset
hosted on EconDataverse Hugging Face repositories.
See also
econdatasets::ed_get() for the underlying function that
downloads data from EconDataverse repositories.
Examples
# \donttest{
# Get the default debt statistics table
debt_statitics <- ids_get_ed()
#> → Reading dataset from
#> https://huggingface.co/datasets/econdataverse/wbids/resolve/main/debt_statistics.parquet
#> ✔ Successfully loaded debt_statistics from wbids
# Get a different table from IDS
series_data <- ids_get_ed("series")
#> → Reading dataset from
#> https://huggingface.co/datasets/econdataverse/wbids/resolve/main/series.parquet
#> ✔ Successfully loaded series from wbids
# }