Displaying 2 results from an estimated 2 matches for "ggplot1".
Did you mean:
ggplot2
2010 Apr 29
1
Sweave question
...can't find the way to hide the graphics while the R chunks are being
executed. I thought results=hide would do it but that't not the case.
If I do:
\begin{figure}[h]
<<figA=true,echo=F,fig=T,results=hide>>=
a < rnorm(1000)
plot(a)
@
\caption{Weekly estimates.}
\label{figure:ggplot1}
\end{figure}
The graphic doesn't get displayed but gets printed on the document
but the code below shows the graphic.......how can I hide it??
\begin{figure}[h]
<<figA=true,echo=F,fig=T,results=hide>>=
library(ggplot2)
winter <- read.csv("Winter_AllYears.csv")
winter...
2010 Apr 28
0
results=hide?
...can't find the way to hide the graphics while the R chunks are being
executed. I thought results=hide would do it but that't not the case.
If I do:
\begin{figure}[h]
<<figA=true,echo=F,fig=T,results=hide>>=
a < rnorm(1000)
plot(a)
@
\caption{Weekly estimates.}
\label{figure:ggplot1}
\end{figure}
The graphic doesn't get displayed but gets printed on the document
but the code below shows the graphic.......how can I hide it??
\begin{figure}[h]
<<figA=true,echo=F,fig=T,results=hide>>=
library(ggplot2)
winter <- read.csv("Winter_AllYears.csv")
winter...