indexes-portfolio | R Documentation |
These functions fetch the current and theoretical portfolio of B3 indexes using predefined dataset templates. The data is retrieved from the datasets "b3-indexes-current-portfolio" and "b3-indexes-theoretical-portfolio".
indexes_current_portfolio_get()
indexes_theoretical_portfolio_get()
An arrow_dplyr_query
or ArrowObject
, representing a lazily evaluated query. The underlying data is not
collected until explicitly requested, allowing efficient manipulation of large datasets without immediate
memory usage.
To trigger evaluation and return the results as an R tibble
, use collect()
.
## Not run:
template_dataset("b3-indexes-current-portfolio", layer = 2) |>
filter(index %in% c("SMLL", "IBOV", "IBRA")) |>
collect()
## End(Not run)
## Not run:
template_dataset("b3-indexes-theoretical-portfolio", layer = 2) |>
filter(index == "IBOV") |>
collect()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.