southwest_mhds | R Documentation |
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))
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.