I am trying to create an xyplot with the key on the right hand side and symbols as well as lines (which have to be given in the key as well). I'm running the following code:
xyplot(value ~ variable | conditionCol1 + conditionCol2,
data = rt, groups = groupingCol, type = "o", pch = 1:6,
auto.key = list(space = "right", pch = 1:6),
xlab = "Instance Size",
ylab = "Execution Time")
The returned graph is correct and has both lines and different symbols for the different groups, however all symbols in the key are coming up as circles...