Displaying 1 result from an estimated 1 matches for "rangeipnorm".
2004 Jun 02
1
use of split.screen() with postscript device
...]],predict(fitIp[[1]]))
dev.off()
...but then I tried to place two figures on the same output sheet by using
split.screen() as follows:
postscript("ripple1.eps",onefile=FALSE)
split.screen(c(1,2))
screen(1)
plot(nu_set[[1]],ip[[1]])
lines(nu_set[[1]],predict(fitIp[[1]]))
screen(2)
plot(rangeIpNorm)
dev.off()
and received no output whatsoever. Furthermore, I can no longer get postscript
output using the original commands! I've tried exiting and re-starting R, and
am just about to reboot because I almost cannot believe what I am seeing.
Can you spot anything that I am doing wrong?
Tha...