Displaying 1 result from an estimated 1 matches for "rpdfig".
Did you mean:
rdig
2007 Mar 23
1
Space for X and Y axis labels
...with,
plot.new()
plot.window(.....)
axis(1)
axis(2)
lines(...)
points(...)
[etc.]
... where do I introduce the xlab=... and ylab=... 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=expressi...