Skip to contents

src_hrsa_facility_data() returns a dataframe of FQHC and other HPSA facilities from HRSA.

Usage

src_hrsa_facility_data()

Source

Value

A data frame (data.frame) containing data pulled from HRSA.

Details

HRSA programs provide health care to people who are geographically isolated, economically or medically vulnerable. This includes people living with HIV/AIDS, pregnant women, mothers and their families, and those otherwise unable to access high quality health care. HRSA also supports access to health care in rural areas, the training of health professionals, the distribution of providers to areas where they are needed most, and improvements in health care delivery.

Author

Todd Burus tburus@uky.edu

Examples

# example code

facs = src_hrsa_facility_data()
#> INFO  [15:32:44.105] Starting hrsa_facility_data
#> INFO  [15:32:44.106] Obtaining non-FQHC HPSAs
#> INFO  [15:32:46.394] Obtaining FQHCs
#> INFO  [15:32:47.213] Completing hrsa_facility_data

colnames(facs)
#> [1] "Type"         "Name"         "Address"      "State"        "Phone_number"
#> [6] "Notes"        "latitude"     "longitude"   

dplyr::glimpse(facs)
#> Rows: 19,156
#> Columns: 8
#> $ Type         <chr> "FQHC", "FQHC", "FQHC", "FQHC", "FQHC", "FQHC", "FQHC", "…
#> $ Name         <chr> "GRAYLING CLINIC", "San Francisco Community Clinic Consor…
#> $ Address      <chr> "# 1 CLINIC ROAD GENERAL DELIV., Grayling, AK 99590", "17…
#> $ State        <chr> "AK", "CA", "AR", "MO", "ID", "OR", "MI", "CA", "NJ", "PA…
#> $ Phone_number <chr> "907-675-4556", "415-355-2222", "479-437-3449", "573-378-…
#> $ Notes        <chr> "All Other Clinic Types", "All Other Clinic Types", "Scho…
#> $ latitude     <dbl> 62.90230, 37.76385, 34.55700, 38.42551, 42.78521, 45.5213…
#> $ longitude    <dbl> -160.06477, -122.41864, -93.63720, -92.85780, -112.84391,…