Displaying 1 result from an estimated 1 matches for "hdtime".
Did you mean:
dtime
2009 Apr 21
2
multiple plots in same graph window
...e page, and the others are not plotted at all.
The script I wrote is the following:
X11()
par(fig=c(0., 0.55, 0.45, 1.), cex=0.8)
plot(ldtime, dx[which(dphotons$energy<0.3, arr.ind=T)], type="l", main="", xlab="seconds", ylab="cell density", xlim=c(min(hdtime), max(ldtime)))
dev.set(dev.cur())
par(fig=c(0., 0.55, 0., 0.55),cex=0.8)
plot(hdtime, dx[which(dphotons$energy>0.5, arr.ind=T)], type="l", xlab="seconds", ylab="cell density", xlim=c(min(hdtime), max(ldtime)))
dev.set(dev.cur())
par(fig=c(0.5, 1., 0., 1.), cex=0....