Displaying 3 results from an estimated 3 matches for "rplot003".
Did you mean:
rplot001
2003 Feb 28
1
axis annotation
Hi,
Is there a way to specify a vector of colors for the tick annotation in a
call to axis(), to achieve the x-axis here?
<<Rplot003.png>>
Thanks,
Mark Wilkinson
Informatics Analyst
St. Jude Children's Research Hospital
Department of Pharmaceutical Sciences
The opinions expressed here are my own and do not necessarily represent
those of St. Jude Children's Research Hospital.
-------------- next part ---------...
2003 Mar 12
3
png plots
I saw in the archive a post from Mark Wilkinson (Feb 1, 2003), saying
that some of his R-generated png plots came out overlapping.
I am seeing the same thing (with R 1.6.2 on Linux i686). My input
file generated 4 plot files. The first two were fine, but the last 2
featured a weird overlay of the remaining graphs. The problem is not
seen with postscript of pdf output.
--
Allin Cottrell
2012 Apr 06
1
Saving multiple plots using tiff function
Dear R experts,
I am trying to save three plots using tiff graphics devices; however the
following code only produces two files (Rplot002.tif and Rplot003.tif)
showing figures 1 and 3. Here is a simplified ex code
tiff(filename ="Rplot%03d.tif",width=24,height=20,units="cm",res=300,
pointsize=10, compression = "lzw")
plot(1)
mtext("Fig 1",side=3,line=4,adj=0.50,padj=2,col="black",cex=1)
plot(2)...