Displaying 1 result from an estimated 1 matches for "index_chart".
2009 Sep 19
3
reducing space between charts in lattice graphics
...e 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", pch=15)
print(total_chart, split=c(1,1,1,3), position=c(0, 0, 1, 1),
newpage=FALSE, more=TRUE)
print(balance_chart, split=c(1,2,1,3), position=c(0, 0, 1, 1),
newpage=FALSE, more=TRUE)
print(index_chart, split=c(1,3,1,3), posi...