cf_resources: Community and Family Resources

cf_resourcesR Documentation

Community and Family Resources

Description

Dataset was scraped from the Community and Family Resources website. This database contains Community and Family Resources location data for the State of Iowa.

Usage

cf_resources

Format

A data frame with 10 rows and 8 variables:

address

Street address for the facility

city

Character string containing city name

state

State Abbreviation

zip

5 digit zip code

name

Facility Name, only 3 locations have unique names

search_address

address used in the Google API geocoding

longitude

geographic Longitude

latitude

geographic Latitude

classification

classification column

Source

http://www.cfrhelps.org/our-locations

Examples

library(ggplot2)
library(dplyr)
cf_resources %>%
 ggplot() +
 geom_point(aes(x = longitude, y = latitude))

library(leaflet)
library(sf)
cf_resources %>%
 leaflet() %>%
 addTiles() %>%
 addPolygons(data = ia_counties,
             weight = 1, color="#333333") %>%
 addCircleMarkers(lng = ~longitude, lat = ~latitude,
                  radius = 1, stroke = 0.1)

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