Displaying 1 result from an estimated 1 matches for "yr09_10".
Did you mean:
2009_10
2012 Jun 02
1
mtext bug
...n i run the loop the margin text does not appear ... what gives?
here is the code
for (col in 1:ncol(xdf)){
par(mar=c(3.5, 4.5, 2, 1), oma=c(2,0,0,0))
ymin = min(xdf[,col]) - 20
ymax = max(xdf[,col]) + 20
png(paste(drive, names(xdf)[col], '.png', sep=""))
plot(coredata(yr09_10[,col]), type='l', ylim=c(ymin, ymax), col=1, lwd=2,
las=1, xlab="", ylab="",
xaxt='n', main=names(xdf)[col])
lines(coredata(yr10_11[,col]), col=2, lwd=2)
lines(coredata(yr11_12[,col]), col=3, lwd=2)
axis(1, at=c(1:365), labels=format(index(yr09_10),...