Returns a list of available CCSR versions for download by scraping the HCUP
website. This function helps users identify which versions are available for
diagnosis and procedure mapping files.
Usage
list_ccsr_versions(type = "all")
Value
A data frame (tibble) with columns:
type: The CCSR type ("diagnosis" or "procedure")
version: The version identifier (e.g., "v2026.1")
Arguments
type
Character string specifying the type of CCSR file. Must be one
of: "diagnosis" (or "dx"), "procedure" (or "pr"), or "all" (default) to
list versions for both types.
Details
This function fetches available CCSR versions from the HCUP website.
Results are cached for 24 hours to minimize website requests. If the website
cannot be accessed, the function will return an error.
# \donttest{# List all available versionslist_ccsr_versions()
# List only diagnosis versionslist_ccsr_versions("diagnosis")
# List only procedure versionslist_ccsr_versions("procedure")
# }