American College of Radiology Lung Cancer Screening Registry (LCSR) dataset
src_acr_lung_cancer_screening_data.Rd
src_lung_cancer_screening_data()
returns a dataframe of actively reporting sites in the
lung cancer screening registry (LCSR).
Arguments
- state
Character string or vector of character strings of state postal abbreviations
- ...
passed to
readr::read_csv()
and useful for limiting the number of rows read for testing or glimpsing data.
Details
The ACR Lung Cancer Screening Registry (LCSR) is designed to systematically audit the quality of interpretation of screening lung CT exams. The registry is based on the ACR Lung Imaging Reporting and Data System (Lung-RADS), which is the product of the ACR Lung Cancer Screening Committee subgroup on Lung-RADS. This Lung-RADS system is a quality assurance tool designed to standardize lung cancer screening CT reporting and management recommendations, reduce confusion in lung cancer screening CT interpretations and facilitate outcome monitoring. The ACR LCSR will capture Lung-RADS recommendations and monitor and compare appropriate use of Lung-RADS#'
See also
Other data accessors:
src_bls_unemployment_data()
,
src_brfss()
,
src_cdc_places_data()
,
src_epa_superfund_data()
,
src_epa_tri_data()
,
src_fda_mammography_data()
,
src_hrsa_facility_data()
,
src_nppes_gi_data()
,
src_nppes_onco_data()
Author
Todd Burus tburus@uky.edu
Examples
# example code
lcs = src_acr_lung_cancer_screening_data(n_max=1000)
#> INFO [15:27:50.987] Starting acr_lung_cancer_screening_data
#> Rows: 1000 Columns: 8
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: ","
#> chr (8): 1 Facility Name, 2 Street Address, 3 city, 4 state, 5 ZIP Code, 6 P...
#>
#> ℹ Use `spec()` to retrieve the full column specification for this data.
#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
#> INFO [15:27:53.079] Completing acr_lung_cancer_screening_data
colnames(lcs)
#> [1] "Type" "Name" "Address" "State" "Phone_number"
#> [6] "Notes" "latitude" "longitude"
dplyr::glimpse(lcs)
#> Rows: 1,000
#> Columns: 8
#> $ Type <chr> "Lung Cancer Screening", "Lung Cancer Screening", "Lung C…
#> $ Name <chr> "Akron General Hospital", "Corewell Health Ludington Hosp…
#> $ Address <chr> "1 Akron General Ave, Akron, OH 44307-2432", "1 Atkinson …
#> $ State <chr> "OH", "MI", "NY", "NJ", "MA", "NJ", "NJ", "NJ", "NY", "NJ…
#> $ Phone_number <chr> "330-344-6450", "231-843-2591", "607-547-3663", "973-429-…
#> $ Notes <chr> "Lung Cancer Screening Designated Site", "LCSR", "LCSR", …
#> $ latitude <chr> "", "", "", "", "", "", "", "", "", "", "", "", "", "", "…
#> $ longitude <chr> "", "", "", "", "", "", "", "", "", "", "", "", "", "", "…