I need to merge 3 graphs into one grid in a dashboard. I have three objects as p1, p2, and p3. I need p1 and p2 to be on the top covering 20% width and center on the top next to each other. And p3 to be on the bottom, covering 80% of the height and 100% of the width:
I have this:
grid.arrange(p1, p2, p3, widths=c(300, 300, 1000), heights=c(300,300,700),ncol=2, clip=TRUE)
display is not balanced p2 seems greater that p1 and p3 is small not as I expected. Any ideas?