health.clinics.Rd
Dataset was scraped by Masoud Nosrati from the Iowa Association of Rural Health Clinics in Mar 2020, geocoding by Andrew Maloney through QGIS.
health.clinics
A data frame with 146 rows and 11 variables:
name of the clinic
formatted addresses - some are duplicates - XXX look into
state abbreviation
name of the county
zip code
country where facility is located
146 0s XXX delete column?
146 OKs XXX delete column?
geographic longitude
geographic latitude
column used for classifying the data set
https://iarhc.org/find-a-rural-health-clinic?view=map
# Map of rural health clinics in Iowa using ggplot2 library(ggplot2) library(dplyr) # for the pipe health.clinics %>% ggplot() + geom_point(aes(x = longitude, y = latitude))# leaflet map library(leaflet) library(sf) health.clinics %>% leaflet() %>% addTiles() %>% addPolygons(data = ia_counties, weight = 1, color="#333333") %>% addCircleMarkers(lng = ~longitude, lat = ~latitude, radius = 1, stroke = 0.1, label = ~name)