Re: [R] XYplot simple question

2009-03-16 Thread Sundar Dorai-Raj
Sorry, I should have xyplot(AbvBioAnnProd ~ Year | factor(Plot), type = c("b", "r"), pch = 16) On Mon, Mar 16, 2009 at 6:17 AM, Sundar Dorai-Raj wrote: > Convert "Plot" to factor: > > xyplot(AbvBioAnnProd ~ Year | Plot, type = c("b", "r"), pch = 16) > > Also note that using the "type" argument w

Re: [R] XYplot simple question

2009-03-16 Thread David Winsemius
You should look again at the first example on the xyplot help page, run it, and pay attention to how the strip function works. All should be revealed. I suspect you want something like: xyplot(AbvBioAnnProd~Year|Plot,panel=function(x,y){ panel.xyplot(x,y,type="b",pch=16, strip =

Re: [R] XYplot simple question

2009-03-16 Thread Sundar Dorai-Raj
Convert "Plot" to factor: xyplot(AbvBioAnnProd ~ Year | Plot, type = c("b", "r"), pch = 16) Also note that using the "type" argument with multiple values prevents the necessity of a custom panel function. HTH, --sundar On Mon, Mar 16, 2009 at 5:54 AM, AllenL wrote: > > Hello R friends, > Simp