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

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))
#> Warning: Removed 1 rows containing missing values (geom_point).
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)
#> Warning: Data contains 1 rows with either missing or invalid lat/lon values and will be ignored