5.8 Coordinate Systems
coord_flipswaps the x and y axis, useful when you have long labels
coord_quickmap, sets aspect ratio for maps
corrd_polar, uses polar coordinates
bar <- ggplot(data = diamonds) +
geom_bar(mapping = aes(x = cut, fill = cut), show.legend = FALSE, width = 1) +
theme(aspect.ratio = 1) +
labs(x = NULL, y = NULL)