cross_mental_health | R Documentation |
CROSS has designated access points for adult mental health and disability services that are listed here
cross_mental_health
A data frame with 36 rows and 5 variables:
Name of the accesss point
Address of the building
state abbreviation
zip code
Phone number of the building
geographic Longitude
geographic Latitude
column used for classifying the data set
https://crossmentalhealth.org/wp-content/uploads/2020/03/Access-Points.pdf
library(dplyr)
# Leaflet map of Cross Mental Health buildings in Iowa
library(leaflet)
library(sf)
cross_mental_health %>%
leaflet() %>%
addTiles() %>%
addPolygons(data = ia_counties,
weight = 1, color="#333333") %>%
addCircleMarkers(radius = 1, stroke = 0.1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.