Re: [R] xyplot color question

2009-03-02 Thread Gabor Grothendieck
Using data frame CO2, built into R, try this: library(lattice) p <- function(..., col) { panel.xyplot(..., type = "p", col = col[1]) panel.xyplot(..., type = "smooth", col = col[2]) } xyplot(conc ~ uptake | Treatment, CO2, panel = p, col = 1:2) On Mon, Mar 2, 2009 at 9:13 AM, Pau

[R] xyplot color question

2009-03-02 Thread Paul Heinrich Dietrich
Hi, I am plotting scatterplots of horsepower by torque, conditional on brand (I'm just making up the variables for this example), and the goal is to see both the scatterplot points as well as the smoothed line. When I do the following code, I get the same color for the points and line, and would