DrJoseValdez / urban_species

0 stars 0 forks source link

city data #2

Open coreytcallaghan opened 3 years ago

coreytcallaghan commented 3 years ago

I added the city data as a .geojson and a .shp

Can run this code to visualize:

library(ggplot2)
library(sf)
library(dplyr)

cities <- st_read("City data/all_cities.geojson")

ggplot()+
  geom_sf(data=cities, aes(fill=log10(population_proper)))+
  theme_bw()