I am using R/Sweave/Latex to create an article with ggplot plots in it. I would like to tile 4 plots on one page and I'm wondering what the best way is to go about it? code for one of my plots is below but even with one plot, I am having problems resizing it and aligning it
Thanks
\begin{figure}
\centering{}
<<echo=FALSE,fig=TRUE, width = 10>>=
DisPlot
@
\vspace*{-35mm}
\caption{Test caption}
\label{fig:Test}
\end{figure}
use par() to tile your plots in a grid. Use \setkeys{Gin} to change size inside the page. Here a working example