Displaying 1 result from an estimated 1 matches for "pres24".
Did you mean:
pre24
2006 Jun 04
1
Problems using lwd in GDD
...) to save
in a png file some plots and i noticed that changing the lwd parameter does
not change my line width
I tried the same script in a Windows based R (2.2.1 r36812), using no GDD,
and it worked.
Does anybody has a clue?
My testing script is something dumb like this:
library(GDD)
GDD("pres24.png", type="png8", width = 700, height = 500)
par(lty=3,lwd=7,cex.axis=0.65,lab=c(12,12,0),mar=c(2.5, 2.5, 2.5, 2.5))
plot(rnorm(100),type="line",lty=3,lwd=7)
mtext("Rodada ",side=3,padj=-0.33,cex=1,font=c(4))
dev.off()
in windows i take off the initial two lines...