Hey @GreedBlink , @luccasr73 . I really like BETS but one big issue that I noted is that it is around 10 times slower than other packages like wilsonfreitas/rbcb , Quandl, fredr, ...
Taking this simple example for comparison, while rbcb takes 0.25 seconds, BETS is taking 30 seconds:
library(tictoc)
tic()
BETS::BETSget(24369)
toc()
tic()
rbcb::get_series(24369)
toc()
Any idea why such a difference?
Thank you.