
Run all registered data loaders and join all loaded series into a big tibble.
Source:R/storage.R
build_all_series.RdRuns run_data_loaders(), joins the resulting environment into a single data
frame via join_env(), and sorts the result by by.
Arguments
- reload
Logical; if
TRUE, forces a full reload by temporarily settingoptions(fundsr.reload = TRUE).- by
Column name to join by and to sort by.
- ...
Additional arguments forwarded to
join_env()(e.g.late,join_precedence, etc.).
See also
Other fund/index workflow functions:
add_data_loader(),
clear_data_loaders(),
clear_storage(),
get_storage(),
join_env(),
load_fund(),
run_data_loaders(),
store_timeseries()
Examples
if (FALSE) { # \dontrun{
s1 <- build_all_series()
download_fund_data(redownload = TRUE)
s2 <- build_all_series(by = "date", late = "ftaw", join_precedence = c(".y", ".x")) %>%
filter(date >= as_date("2013-01-01"))
} # }