cross_mental_health: Cross Mental Health Data

cross_mental_healthR Documentation

Cross Mental Health Data

Description

CROSS has designated access points for adult mental health and disability services that are listed here

Usage

cross_mental_health

Format

A data frame with 36 rows and 5 variables:

name

Name of the accesss point

address

Address of the building

state

state abbreviation

zip

zip code

phone

Phone number of the building

longitude

geographic Longitude

latitude

geographic Latitude

classification

column used for classifying the data set

Source

https://crossmentalhealth.org/wp-content/uploads/2020/03/Access-Points.pdf

Examples

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)

DSPG-ISU/DSPG documentation built on Feb. 19, 2024, 9:36 p.m.