Displaying 1 result from an estimated 1 matches for "tpar1".
Did you mean:
par1
2006 Nov 06
1
line width (all elements) in Trellis
...icular, the top of the box (above the upper most strip) and
the left y-axis remain one point.
Code with a barchart() example is below. Any advice would be greatly
appreciated.
Thanks for your time,
Dan
note: I am using R 2.4.0 on a windows platform.
windows(width=6, height=4, record=TRUE)
tpar1=trellis.par.get("add.line")
tpar1$lwd=2
trellis.par.set("add.line", tpar1)
tpar2=trellis.par.get("plot.polygon")
tpar2$lwd=2
trellis.par.set("plot.polygon", tpar2)
tpar3=trellis.par.get("plot.line")
tpar3$lwd=2
trellis.par.set("plot.line"...