Retrieve data contained with all or specific rows of a tibble
returned by tsg_available()
or tsg_missing()
.
tsg_specific_df(x, verbose = TRUE, timeout = 30, retries = 0)
All or a subset of a tibble returned by
tsg_available()
or tsg_missing()
If TRUE
, prints console messages on data retrieval progress.
Defaults to TRUE
.
The maximum request time, in seconds. If data is not returned
in this time, a value of NA
is returned for that dataset.
Defaults to 30 seconds.
The number of retries to make if a request is not successful. Defaults to 0.
A list of tibbles with grant data.
if (FALSE) {
all_grants <- tsg_all_grants()
missing_grants <- tsg_missing(all_grants)
more_grants <- tsg_specific_df(missing_grants)
}