cf_resources | R Documentation |
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))
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.