Skip to contents

Search For Keywords in Databrary Volumes.

Usage

search_for_keywords(
  search_string = "locomotion",
  vb = options::opt("vb"),
  rq = NULL
)

Arguments

search_string

String to search.

vb

Show verbose messages. (Defaults to FALSE, overwritable using option 'databraryr.vb' or environment variable 'R_DATABRARYR_VB')

rq

An httr2 request object. Default is NULL.

Value

A list with the volumes that contain the keyword.

Examples

if (FALSE) { # \dontrun{
search_for_keywords() # searches for volumes with "locomotion" as a keyword.
search_for_keywords()

# searches for volumes with "adult" as a keyword.
search_for_keywords("adult") 
} # }