Run all registered data loaders and join all loaded series into a big tibble.
Source:R/fund_imp.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. Defaults to
"date".- ...
Additional arguments forwarded to
join_env()(e.g.late =,coalesce_suffixed =, etc.).
Examples
if (FALSE) { # \dontrun{
s1 <- build_all_series()
download_fund_data(redownload = TRUE)
s2 <- build_all_series(by = "date", late = "ftaw", coalesce_suffixed = c(".y", ".x")) %>%
filter(date >= as_date("2013-01-01"))
} # }