Tagged Questions
The trellis tag has no wiki summary.
2
votes
2answers
108 views
How to plot two lines by factor in a trellis graph?
Define:
df <- data.frame(
line1 = rep(seq(1,5,by=1),2),
line2 = rep(seq(2,6,by=1),2),
index = rep(seq(1,5,by=1),2),
factor=rep(c("a","b"),each=5))
where line1 ...
1
vote
0answers
34 views
R - Change key colours in ancova (HH package)
I'm using the ancova() function in R (HH package) with a factor with more levels than the default 7 colours for lattice graphics.
This means that ancova() fails to plot some of my panels as it can't ...