FDA Certified Mammography Facilities Dataset
src_fda_mammography_data.Rd
src_fda_mammography_data()
returns a dataframe of certified mammography facilities
from the FDA Certified Mammography Facilities dataset.
Details
The Mammography Quality Standards Act requires mammography facilities across the nation to meet uniform quality standards. Congress passed this law in 1992 to assure high-quality mammography for early breast cancer detection, which can lead to early treatment, a range of treatment options, and increased chances of survival. Under the law, all mammography facilities must: 1) be accredited by an FDA-approved accreditation body, 2) be certified by FDA, or its State, as meeting the standards, 3) undergo an annual MQSA inspection, and 4) prominently display the certificate issued by the agency. All facilities meeting this criteria are listed in the FDA Certified Mammography Facilities dataset
See also
Other data accessors:
src_acr_lung_cancer_screening_data()
,
src_bls_unemployment_data()
,
src_brfss()
,
src_cdc_places_data()
,
src_epa_superfund_data()
,
src_epa_tri_data()
,
src_hrsa_facility_data()
,
src_nppes_gi_data()
,
src_nppes_onco_data()
Author
Todd Burus tburus@uky.edu
Examples
# example code
mam = src_fda_mammography_data()
#> INFO [15:32:43.276] Starting fda_mammography_data
#> INFO [15:32:43.827] Completing fda_mammography_data
colnames(mam)
#> [1] "Type" "Name" "Address" "State" "Phone_number"
#> [6] "Notes" "latitude" "longitude"
dplyr::glimpse(mam)
#> Rows: 8,830
#> Columns: 8
#> $ Type <chr> "Mammography", "Mammography", "Mammography", "Mammography…
#> $ Name <chr> "'Ohana Memorials Mammography Services", "375th Medical G…
#> $ Address <chr> "1515 W Yakima Ave., Yakima, WA 98902", "310 W Losey St.,…
#> $ State <chr> "WA", "IL", "MT", "IL", "AZ", "VA", "OH", "NC", "FL", "NY…
#> $ Phone_number <chr> "5095743863", "6182561494", "4062993302", "8472132700", "…
#> $ Notes <chr> "", "", "", "", "", "", "", "", "", "", "", "", "", "", "…
#> $ latitude <chr> "", "", "", "", "", "", "", "", "", "", "", "", "", "", "…
#> $ longitude <chr> "", "", "", "", "", "", "", "", "", "", "", "", "", "", "…