Get current dataset by merging full and differential extracts
Source:R/datasets.R
bs_get_dataset_current.RdDownloads the latest full extract and all subsequent differential extracts for a dataset, then merges them to produce a current-as-of-today tibble.
Value
A tibble of the merged dataset contents. The tibble carries a
"bds_manifest" attribute with the extract breakdown (full, each diff,
and merged total with row counts and download status). Retrieve it with
bs_diff_manifest().
Examples
# \donttest{
if (bs_has_token()) {
users <- bs_get_dataset_current("Users")
bs_diff_manifest(users)
}
# }