multiple graphs in one canvas using ggplot2

You can use grid.arrange() in the gridExtra package like this:

grid.arrange(p1, p2)

Leave a Comment