Skip to contents

Get the current Ambulatory Surgery Center data.

Usage

current_asc_oas_cahps_data(
  .data,
  .data_sets = c("Facility", "State", "National")
)

Arguments

.data

The data that results from the current_hosp_data() function.

.data_sets

The default is: c("Facility","State","National"), which will bring back all of the data sets that are in the Ambulatory Surgery Center OAS CAHPS data sets. You can choose from the following:

  • Facility

  • National

  • State

You can also pass things like c("state","Nation") as behind the scenes only the Ambulatory Surgery Center data sets are available to the function to choose from and grep is used to find matches with ignore.case = TRUE set.

Value

Gets the current ASC data from the current hospital data file.

Details

This function will obtain the current Ambulatory Surgery Center data from the output of the current_hosp_data() function, that is the required input for the .data parameter. You can pass in a list of which of those data sets you would like,

Author

Steven P. Sanderson II, MPH

Examples

if (FALSE) {
current_hosp_data() |>
  current_asc_oas_cahps_data(.data_sets = c("State","National"))
}