cf_resources.Rd
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
A data frame with 10 rows and 8 variables:
Street address for the facility
Character string containing city name
State Abbreviation
5 digit zip code
Facility Name, only 3 locations have unique names
address used in the Google API geocoding
geographic Longitude
geographic Latitude
classification column
http://www.cfrhelps.org/our-locations
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