I need compare ukrainian cities by area in ggplot2. But all of they plot in the same size.
Can you help me?
I use this code:
library(ggplot2)
cities <- read.csv("https://raw.githubusercontent.com/savchukidze/maps/master/cities.csv", stringsAsFactors = F)
png("compare_cities.png", height = 3000, width = 2500)
ggplot()+
geom_polygon(data = cities, aes(long, lat, group = group),
color = "black", size = 2.5, fill = "grey", alpha = 1)+
facet_wrap(~city, scales = "free")
dev.off()