Displaying 1 result from an estimated 1 matches for "total_chart".
2009 Sep 19
3
reducing space between charts in lattice graphics
...ical space between the charts. My
code is below. There seems to be a "between" parameter for lattice.options,
but I can't find any examples. Aside from the data setup, the code is below.
Can anyone provide an example showing how to reduce the white space between
the charts? Thanks.
total_chart <- xyplot(total ~ date,
xlab=list(label=""),
ylab=list(label="Total Work")
)
balance_chart <- xyplot(bal ~ date,
xlab=list(label=""),
ylab=list(label="Remaining Work")
)
index_chart <- xyplot(index ~ date, col="red", type="b",...