R/get_dictionary.R

Defines functions get_dictionary

Documented in get_dictionary

#' View the 'CDC PLACES' data dictionary
#'
#' This function provides the user with a data frame that shows all of the available measures in the PLACES data set and for which release years the measures are included.
#'
#'@importFrom yyjsonr read_json_str
#'@importFrom curl has_internet
#'
#'@examples
#'# First save the data
#'\dontrun{
#'dictionary <- get_dictionary()
#'}
#'# Then view the data frame
#'# View(dictionary)
#'
#'@export get_dictionary
#'@returns a dataframe with the current PLACES data dictionary.

get_dictionary <- function(){

  if(!curl::has_internet()){
    message("Request could not be completed. No internet connection.")
    return(invisible(NULL))
  }

  base <- "https://data.cdc.gov/resource/m35w-spkz.json"

  if(is.null(check_api(base))){       return(NULL)     }

  resp <- curl::curl_fetch_memory(base)

  resp$content |>
    rawToChar() |>
    yyjsonr::read_json_str()
}

Try the CDCPLACES package in your browser

Any scripts or data that you put into this service are public.

CDCPLACES documentation built on June 10, 2025, 9:13 a.m.