Slide 30
Slide 30 text
CREATING TRELLISCOPE DISPLAYS
» Trelliscope displays are created by specifying a way
to divide the data, a panel function and (optionally)
a cognostics function
barley %>% qtrellis(by = "site",
panel = function(x)
dotplot(variety ~ yield, data = x, groups = year,
auto.key = list(space = "top", columns = 2),
xlab = "Barley Yield (bushels/acre)"),
cog = function(x)
list(meanYield = cog(mean(x$yield)),
meanYieldDiff = cog(mean(x$yield *
ifelse(x$year == "1931", -1, 1)))),
lims = list(x = "same"),
width = 300, height = 200, layout = c(2, 3))
Trelliscope code: