Description Usage Arguments Value Author(s) References Examples
View source: R/sal_fetch_catalog.R
Fetch catalog of available data sets.
1 | sal_fetch_catalog(rss_url = "https://cityofsalinas.opendatasoft.com/api/v2/catalog/exports/rss")
|
rss_url |
|
tibble::tibble
data frame with columns:
|
|
|
|
|
|
|
|
|
|
Brendan Knapp brendan.g.knapp@gmail.com
https://cityofsalinas.opendatasoft.com/pages/homepage/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | library(salinasr)
suppressPackageStartupMessages(library(tidyverse))
catalog <- sal_fetch_catalog()
catalog
catalog %>% glimpse()
grocery_stores <- catalog %>%
filter(grepl("grocery stores", description))
grocery_stores %>% pull(description)
grocery_stores %>% pull(dataset_id)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.