Skip to contents

Provides structured views of the data catalog to help discover relevant datasets. Returns organized summaries by different dimensions.

Usage

po_explore(query = NULL, verbose = TRUE)

Arguments

query

Optional search term to focus exploration

verbose

Logical. Show exploration progress (default TRUE)

Value

A list with multiple views of the data:

by_organization

Datasets grouped by publishing organization

by_format

Resources grouped by file format

by_year

Temporal distribution of datasets

by_size

Size distribution and largest datasets

recent

Recently updated datasets

popular

Datasets with most resources

recommendations

Suggested starting points based on query

Examples

if (FALSE) { # \dontrun{
# General exploration
explore <- po_explore()

# Explore health-related data
health <- po_explore("salud")

# See what MINSA publishes
explore$by_organization$MINSA

# Find all available Excel files
explore$by_format$XLSX
} # }