Using R's gridExtra library we can easily plot with grid.arrange()
require(gridExtra)
gridExtra::grid.arrange(iris1,iris2)
There is a way to put it together by using cowplot library, as grid.arrange make it difficult to labels the plots with letters(A, B, C)
library(cowplot)
plot_grid(iris1, iris2, labels = "AUTO")
Hope this