Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
clarify comments in script
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Prener committed Apr 19, 2018
1 parent 6a4465a commit 5aef5b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2016/source/createMap.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ library(prener)
us_sf <- usa_sf("laea")

## Create median income object
### download missouri counties
### download median income by county
us_county_income <- get_acs(geography = "county", variables = "B19013_001",
shift_geo = TRUE, geometry = TRUE)

### jenks natural breaks
### calculate jenks natural breaks
jenks <- classIntervals(us_county_income$estimate, n=5, style="jenks")
income <- cut(us_county_income$estimate, breaks = c(jenks$brks))

Expand Down

0 comments on commit 5aef5b3

Please sign in to comment.