Skip to contents

Search for datasets on RIDL

Usage

ridl_dataset_search(
  query = "*:*",
  visibility = c("all", "public", "restricted"),
  filter_query = "",
  rows = 10L,
  start = 0L,
  page_size = 1000L,
  configuration = NULL,
  progress = FALSE,
  ...
)

rd_search(
  query = "*:*",
  visibility = c("all", "public", "restricted"),
  filter_query = "",
  rows = 10L,
  start = 0L,
  page_size = 1000L,
  configuration = NULL,
  progress = FALSE,
  ...
)

Arguments

query

character Query terms, use solr format and default to ":" (match everything)

visibility

character, either all, public or restricted

filter_query

character, filter query results

rows

integer, number of matching records to return. Defaults to 10.

start

integer, the offset in the complete result for where the set of returned datasets should begin.

page_size

integer, Size of page to return. Defaults to 1000.

configuration

RIDLConfig object.

progress

logical, progress bar. Default to FALSE

...

Extra parameters for package_search endpoints

Value

A list of RIDL datasets

Details

Search and find datasets on RIDL

Examples

if (FALSE) {
 # Setting the config to use RIDL default server
 rd_search("sens chad", rows = 3L)
}