Skip to content
Prev 206647 / 398503 Next

lattice and legend

robert-mcfadden wrote:
The very short answer by Deepayan is in 
http://markmail.org/message/ptoj6ylnt432odbw

a longer one at
http://markmail.org/message/72tavcpaoqg4nhn2

Searching for "barchart legend color" gives about  20 references. Please use
data sets that are reproducible, not your private data, for example

library(lattice)
col= c("red","green") 
barchart(yield ~ variety | site, data = barley,
         groups = year, layout = c(1,6),
         col= col,
         auto.key=list(rectangles = TRUE, space = "bottom",col=col)
         )

Dieter