- using R Under development (unstable) (2025-12-02 r89085)
- using platform: x86_64-pc-linux-gnu
- R was compiled by
gcc-15 (Debian 15.2.0-9) 15.2.0
GNU Fortran (Debian 15.2.0-9) 15.2.0
- running under: Debian GNU/Linux forky/sid
- using session charset: UTF-8
- checking for file ‘worldbank/DESCRIPTION’ ... OK
- this is package ‘worldbank’ version ‘0.7.0’
- package encoding: UTF-8
- checking CRAN incoming feasibility ... [1s/1s] OK
- checking package namespace information ... OK
- checking package dependencies ... OK
- checking if this is a source package ... OK
- checking if there is a namespace ... OK
- checking for executable files ... OK
- checking for hidden files and directories ... OK
- checking for portable file names ... OK
- checking for sufficient/correct file permissions ... OK
- checking whether package ‘worldbank’ can be installed ... OK
See the install log for details.
- checking package directory ... OK
- checking for future file timestamps ... OK
- checking DESCRIPTION meta-information ... OK
- checking top-level files ... OK
- checking for left-over files ... OK
- checking index information ... OK
- checking package subdirectories ... OK
- checking code files for non-ASCII characters ... OK
- checking R files for syntax errors ... OK
- checking whether the package can be loaded ... [0s/1s] OK
- checking whether the package can be loaded with stated dependencies ... [0s/0s] OK
- checking whether the package can be unloaded cleanly ... [0s/1s] OK
- checking whether the namespace can be loaded with stated dependencies ... [0s/0s] OK
- checking whether the namespace can be unloaded cleanly ... [0s/1s] OK
- checking loading without being on the library search path ... [0s/1s] OK
- checking use of S3 registration ... OK
- checking dependencies in R code ... OK
- checking S3 generic/method consistency ... OK
- checking replacement functions ... OK
- checking foreign function calls ... OK
- checking R code for possible problems ... [4s/6s] OK
- checking Rd files ... [0s/0s] OK
- checking Rd metadata ... OK
- checking Rd line widths ... OK
- checking Rd cross-references ... OK
- checking for missing documentation entries ... OK
- checking for code/documentation mismatches ... OK
- checking Rd \usage sections ... OK
- checking Rd contents ... OK
- checking for unstated dependencies in examples ... OK
- checking examples ... [1s/8s] ERROR
Running examples in ‘worldbank-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: wb_data
> ### Title: World Bank country indicator data
> ### Aliases: wb_data wb_country_indicator
>
> ### ** Examples
>
> ## Don't show:
> if (httr2::is_online()) withAutoprint({ # examplesIf
+ ## End(Don't show)
+ # single indicator for a single country (all available years)
+ ind <- wb_data("NY.GDP.MKTP.CD", "US")
+ head(ind)
+
+ # multiple indicators for multiple countries (2015-2023)
+ ind <- wb_data(
+ indicator = c("NY.GDP.MKTP.CD", "FP.CPI.TOTL.ZG"),
+ country = c("US", "DE", "FR", "CH", "JP"),
+ start_date = 2015, end_date = 2023
+ )
+ head(ind)
+ ## Don't show:
+ }) # examplesIf
> ind <- wb_data("NY.GDP.MKTP.CD", "US")
> head(ind)
date indicator_id indicator_name country_id country_name country_code
1 2024 NY.GDP.MKTP.CD GDP (current US$) US United States USA
2 2023 NY.GDP.MKTP.CD GDP (current US$) US United States USA
3 2022 NY.GDP.MKTP.CD GDP (current US$) US United States USA
4 2021 NY.GDP.MKTP.CD GDP (current US$) US United States USA
5 2020 NY.GDP.MKTP.CD GDP (current US$) US United States USA
6 2019 NY.GDP.MKTP.CD GDP (current US$) US United States USA
value unit obs_status decimal
1 2.918489e+13 <NA> <NA> 0
2 2.772071e+13 <NA> <NA> 0
3 2.600689e+13 <NA> <NA> 0
4 2.368117e+13 <NA> <NA> 0
5 2.135410e+13 <NA> <NA> 0
6 2.153998e+13 <NA> <NA> 0
> ind <- wb_data(indicator = c("NY.GDP.MKTP.CD", "FP.CPI.TOTL.ZG"), country = c("US",
+ "DE", "FR", "CH", "JP"), start_date = 2015, end_date = 2023)
Error in `req_perform()`:
! HTTP 400 Bad Request.
Backtrace:
▆
1. ├─base::withAutoprint(...)
2. │ └─base::source(...)
3. │ ├─base::withVisible(eval(ei, envir))
4. │ └─base::eval(ei, envir)
5. │ └─base::eval(ei, envir)
6. └─worldbank::wb_data(...)
7. └─worldbank:::worldbank_seq(resource = resource, lang = lang, date = date)
8. ├─worldbank:::map(...)
9. │ └─base::lapply(.x, .f, ...)
10. └─httr2::req_perform_sequential(...)
11. ├─base::tryCatch(...)
12. │ └─base (local) tryCatchList(expr, classes, parentenv, handlers)
13. │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
14. │ └─base (local) doTryCatch(return(expr), name, parentenv, handler)
15. └─httr2::req_perform(reqs[[i]], path = paths[[i]])
16. └─httr2:::handle_resp(req, resp, error_call = error_call)
17. └─httr2:::resp_failure_cnd(req, resp, error_call = error_call)
18. ├─rlang::catch_cnd(...)
19. │ ├─rlang::eval_bare(...)
20. │ ├─base::tryCatch(...)
21. │ │ └─base (local) tryCatchList(expr, classes, parentenv, handlers)
22. │ │ └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
23. │ │ └─base (local) doTryCatch(return(expr), name, parentenv, handler)
24. │ └─base::force(expr)
25. └─rlang::abort(...)
Execution halted
- checking for unstated dependencies in ‘tests’ ... OK
- checking tests ... [3s/4s] OK
Running ‘testthat.R’ [3s/4s]
- checking PDF version of manual ... [5s/8s] OK
- checking HTML version of manual ... [1s/3s] OK
- checking for non-standard things in the check directory ... OK
- DONE
Status: 1 ERROR