Suppose I have a function
plotSingle <- function(x) {
plot(x)
}
I want to use this in a loop in Sweave
to generate 20 pages with 1 plot on each page. For example:
\begin{figure}[htb]
\caption{}
\centering
<<fig=TRUE,echo=FALSE>>=
for(loop in 1:20) {
plotSingle(loop)
cat('\\newpage')
}
@
\end{figure}
However, this will only generate 1 plot on 1 page, not the 20 on 20 pages that I'm after.
How do I adjust the above Sweave
code in order to do what I want?
You should add
plot.new
or its aliasframe()
and no need to tocat('\\newpage')
EDIT with layout:
I think that knitr do some optimizations when he found the same plot statement. That