Returns the complete catalog of datasets in collections with their metadata. This is a convenience function that loads and returns the collection_catalog data.
get_collection_catalog()A data frame with all datasets and their metadata.
if (FALSE) { # \dontrun{
# Get complete catalog
catalog <- get_collection_catalog()
# View in RStudio
View(catalog)
# Summary statistics
summary(catalog$total_size_mb)
table(catalog$collection)
# Find smallest dataset
catalog[which.min(catalog$total_size_mb), ]
# Find largest dataset
catalog[which.max(catalog$total_size_mb), ]
} # }