southwest_mhds.Rd
Dataset was scraped from the MHDS website.
southwest_mhds
A data frame with 356 rows and 13 variables:
Service type provided at facility
Iowa county name
Currently Unknown
Name of the facility
Column containing location information: Street, City, State, Zip
Phone Number for the facility
A description to help the viewer navigate which facility is best for them
Facility website link
Contact Email for facility
Currently Unknown
Date at which website information was last updated
geographic Longitude
geographic Latitude
https://www.aa-iowa.org/meetings/
# Location of MHDS in Iowa library(ggplot2) library(dplyr) southwest_mhds %>% ggplot() + geom_point(aes(x = longitude, y = latitude))#> Warning: Removed 15 rows containing missing values (geom_point).# Leaflet map of meetings in Iowa library(leaflet) library(sf) southwest_mhds %>% leaflet() %>% addTiles() %>% addPolygons(data = ia_counties, weight = 1, color="#333333") %>% addCircleMarkers(lng = ~longitude, lat = ~latitude, radius = 1, stroke = 0.1, label = ~southwest_mhds)#> Warning: Data contains 15 rows with either missing or invalid lat/lon values and will be ignored