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)

Arguments

x

All or a subset of a tibble returned by tsg_available() or tsg_missing()

verbose

If TRUE, prints console messages on data retrieval progress. Defaults to TRUE.

timeout

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.

retries

The number of retries to make if a request is not successful. Defaults to 0.

Value

A list of tibbles with grant data.

Examples

if (FALSE) {
all_grants <- tsg_all_grants()

missing_grants <- tsg_missing(all_grants)

more_grants <- tsg_specific_df(missing_grants)
}