Skip to content
Prev 76794 / 398502 Next

Lattice key seems to ignore the key list

Patrick Connolly wrote:
Hi, Patrick,

You have "space" and "column" in your "text" list. I.e.

text = list(levels(xx$Entry), space = "right", columns = 1))

This should be

text = list(levels(xx$Entry)), space = "right", columns = 1)

Note the placement of the parantheses.

--sundar