Last active
May 20, 2018 03:42
-
-
Save fawda123/9315d9d975874e14340daccc0cd80274 to your computer and use it in GitHub Desktop.
chloroex
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# load libraries | |
library(sf) | |
library(maps) | |
library(ggplot2) | |
# get states as sf | |
states <- st_as_sf(map('state', plot = F, fill = T)) | |
# calculate area, add to states | |
area <- st_area(states) | |
area <- as.numeric(area) / 1e6 | |
states$area <- area | |
# map | |
ggplot() + | |
geom_sf(data = states, aes(fill = area)) + | |
scale_fill_distiller(palette = 'Spectral') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment