Displaying 1 result from an estimated 1 matches for "nwpd".
Did you mean:
ntpd
2007 Mar 23
1
Space for X and Y axis labels
...ab=... commands? I
attempted this in plot.window() but no labels showed up.
Second, here's a bit of real code...
postscript(file="RPDfig.eps",onefile=FALSE,
+ horizontal=FALSE,paper="special",height=8.3,
+ width=11.7)
matplot(2:length(PRICE),t(NWpd),type="l",xlim=c(0,200),
+ ylim=c(-0.1,0.1),xaxs="i",yaxs="i",xlab="Time",
+ ylab=expression(over(x,y)),bty="n")
points(2:length(PRICE),Ppd,col="red")
dev.off()
Here the y label is meant to be x over y (a fraction), but th...