Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetch multiple series at once #11

Closed
wilsonfreitas opened this issue Nov 24, 2017 · 1 comment
Closed

Fetch multiple series at once #11

wilsonfreitas opened this issue Nov 24, 2017 · 1 comment

Comments

@wilsonfreitas
Copy link
Owner

Once all series are indexed by dates it is easy to get all merged in the same data structure.
We can consider tibble, xts, data.frame, but ts can't.
Or instead of getting series merged the return should be a list with the series as its elements.

x <- get_series(c(1, 7, 433))
x[["1"]]
x[["7"]]
x[["433"]]

for named series

x <- get_series(c(DOL = 1, IBOV = 7, IPCA = 433))
x$DOL
x$IBOV
x$IPCA
@wilsonfreitas
Copy link
Owner Author

Done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant