Displaying 1 result from an estimated 1 matches for "toruosityplot".
Did you mean:
tortuosityplot
2009 Feb 05
2
Unexpected mfrow, layout behavior (pdf still has multiple pages)
...le, having
one graph per page. This is not what I want (I didn't want multiple
pages). Just before I sent this post, I was able to generate the
desired output with split.screen. Is this the expected behavior of
mfrow and layout?
Paul
--------------------------------
My code is as follows (ToruosityPlot and DiameterPlot are essentially
identical to LDRPlot).
layout(matrix(1:3, ncol=1))
#par(mfrow=c(3,1))
pdf("results.pdf", width=4, height=3, pointsize=4, colormodel="cmyk",
onefile=TRUE)
TortuosityPlot(left, right)
DiameterPlot(left, right)
LDRPlot(left, right)
dev.off()
LD...