wilsonfreitas / rbcb

R interface to Brazilian Central Bank web services
https://wilsonfreitas.github.io/rbcb/
Other
91 stars 22 forks source link

Importing quarterly data as ts #61

Closed viniciusoike closed 5 months ago

viniciusoike commented 5 months ago

There seems to be an issue when importing quarterly data as ts. Both rbcb::get_series(28566, as = "tibble") and rbcb::get_series(28566, as = "xts") work but rbcb::get_series(28563, as = "ts") returns:

Error in map(): ℹ In index: 1. Caused by error in round(): ! non-numeric argument to mathematical function

Other examples include: 1232, 7331, 7332, 7333, 7334, 7335.

sessionInfo() R version 4.2.2 (2022-10-31) Platform: aarch64-apple-darwin20 (64-bit) Running under: macOS 14.1.2

Matrix products: default LAPACK: /Library/Frameworks/R.framework/Versions/4.2-arm64/Resources/lib/libRlapack.dylib

locale: [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

attached base packages: [1] stats graphics grDevices utils datasets methods base

loaded via a namespace (and not attached): [1] rstudioapi_0.15.0 xml2_1.3.6 magrittr_2.0.3 tidyselect_1.2.0 [5] lattice_0.21-8 R6_2.5.1 rlang_1.1.3 fansi_1.0.6
[9] httr_1.4.7 dplyr_1.1.4 tools_4.2.2 xts_0.13.2
[13] grid_4.2.2 utf8_1.2.4 cli_3.6.2 digest_0.6.34
[17] tibble_3.2.1 lifecycle_1.0.4 purrr_1.0.2 vctrs_0.6.5
[21] curl_5.2.0 glue_1.7.0 compiler_4.2.2 pillar_1.9.0
[25] rbcb_0.1.13 generics_0.1.3 jsonlite_1.8.8 pkgconfig_2.0.3
[29] zoo_1.8-12

wilsonfreitas commented 5 months ago

Hi, it is correct, quarterly data wasn't being handled. Now it's been solved. Thanks for reporting.