Displaying 1 result from an estimated 1 matches for "lgcol".
Did you mean:
gcol
2010 May 31
3
two questions about PLOT
...is superposition
with the old axis information.What can i do ?
the script and figure is shown as below .thanks .:)
outflnm<-paste(Outdic,"meansd.jpg",sep="/")
jpeg(file=outflnm, bg="transparent")
legend<-c("average error","stand quare error")
lgcol<-c("black","red1")
par(las=1)
yylab<-c("forecast error")
xxlab<-c("typhoon class")
llty<-c(1,3)
llwd<-c(4,4)
#par(bg='yellow')
plot(avegrp,type='l',lty=1,col='black',lwd=4,xlab=xxlab,ylab=yylab)
par(new=T)
plot(sdgrp,t...