Align edges of ggplot choropleth (legend title varies)
问题 I am attempting to align the left and right edges of 4 ggplot choropleth maps using this method. I am unable to do this though. Original plot: library(ggplot2); library(gridExtra) crimes <- data.frame(state = tolower(rownames(USArrests)), USArrests) states_map <- map_data("state") plot1 <- ggplot(crimes, aes(map_id = state)) + geom_map(aes(fill = Murder), map = states_map) + expand_limits(x = states_map$long, y = states_map$lat) + scale_fill_gradient(low="white", high="darkgreen", name=