Displaying 2 results from an estimated 2 matches for "myylab".
Did you mean:
yylab
2010 Jan 25
1
Same y-axis on multiple plots?
...ow, but I can't seem to find what I am looking for. I am certain that it is something simple, and would be gratefull if someone could point me in the right direction.
R code run through PL/R in Postgres is as follows:
mymain <- "Graph 3";
myxlab <- "Time: 24/Hours";
myylab <- "Number of Hits";
png(''/tmp/graph3.png'');
plot(str,type="b",main=mymain,xlab=myxlab,ylab=myylab,lwd=2, axes=F, ylim.max=0);
clip(0, 25, 0, 600);
axis(1, at = c(0, 3, 6, 9, 12, 15, 18, 21, 24));
axis(2, at = c(0, 100, 200, 300, 400, 500, 600));
abline(h =...
2011 Nov 23
1
Colorbar too wide in eps
Hi!
When I plot my filled.contour plot
> filled.contour(dat,color=rainbow,plot.axes=matrix.axes(dat),xlab=myxlab,ylab=myylab)
everything looks fine on the screen.
But if I wrap these two lines
>postscript(file="myplot.eps",paper="special",width=4,height=4,family='Times',horizontal=FALSE)
...
>dev.off()
around the line above in order to create an eps file, the bar is much too wide.
I tr...