southwest_mhds: Southwest Iowa Region Mental Health & Disability Services

southwest_mhdsR Documentation

Southwest Iowa Region Mental Health & Disability Services

Description

Dataset was scraped from the MHDS website.

Usage

southwest_mhds

Format

A data frame with 356 rows and 13 variables:

category

Service type provided at facility

county

Iowa county name

related records

Currently Unknown

service title

Name of the facility

address

Column containing location information: Street, City, State, Zip

phone

Phone Number for the facility

description

A description to help the viewer navigate which facility is best for them

website

Facility website link

email

Contact Email for facility

expiration

Currently Unknown

last updated

Date at which website information was last updated

longitude

geographic Longitude

latitude

geographic Latitude

Source

https://www.aa-iowa.org/meetings/

Examples

# 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)

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