Return a tibble with information on all grant datasets where funder data matches one or more search strings.
tsg_search_funders(
search,
search_in = NULL,
verbose = TRUE,
ignore_case = TRUE,
perl = FALSE,
fixed = FALSE
)
The string(s) to search for. By default allows POSIX 1003.2
regular expressions. Use perl = TRUE
for perl-style regex, or
fixed = TRUE
for fixed strings.
Accepts single strings or a character vector of strings.
The name of the column to search in. Accepts single strings
or a character vector of column names. If NULL
, searches all columns.
If TRUE
, prints console messages on data retrieval progress.
Defaults to TRUE
.
If TRUE
ignores case.
If TRUE
, uses perl-style regex.
If TRUE
, searches will be matched as-is.
A tibble with information on matching datasets
tsg_search_grants()
for retrieving all grants
from matching funders.
if (FALSE) {
search1 <- tsg_search_funders(search = c("bbc", "caBinet"))
}