Displaying 1 result from an estimated 1 matches for "laywid".
2013 Feb 15
3
lattice 3x3 plot: force common y-limits accross rows and align x-axes
...}
# combine everthing in one plot
oltc <- c(low=oltc.low,med=oltc.med,high=oltc.high)
print(oltc)
# get rid of variable labels in middle and right column; decrease
# distance between columns. But can't make inter-column spaces
# small enought and get rid of the panels in all but top rows.
laywid <- trellis.par.get('layout.widths')
laywid$between <- -5
laywid$axis.panel <- 0.7
yscales <- list(labels=list(sbjx.low,NULL,NULL,
sbjx.med,NULL,NULL,
sbjx.high,NULL,NULL))
oltd <- update(oltc,scales=list(y=yscales),...