Displaying 2 results from an estimated 2 matches for "currcow".
Did you mean:
currcon
2006 Jan 31
0
lattice: combining panel.xyplot with panel.abline - is this possible?
...58
11 3 1 4 4.5 1.6394222
12 3 2 4 4.5 1.2024161
13 3 3 4 4.5 0.1784666
14 3 4 4 4.5 -1.3260668
15 3 5 4 4.5 -0.2711263
I would like to plot y against time with a panel for each id, i.e. with something like
xyplot(y~time|id, data=dat,type='l') or
xyplot(currCow.mean~currCow.cm|cowid, data=mergeData, type='l',
panel=function(x,y,...){
panel.xyplot(x,y)
}
)
Then, I would additionally like to have two vertical lines in each panel, and these are defined by cm1 and cm2. My understanding of xyplot is that id will give a partitioning of data in...
2006 Jan 31
0
lattice: combining panel.xyplot with panel.abline - is thispossible?
...024161
> 13 3 3 4 4.5 0.1784666
> 14 3 4 4 4.5 -1.3260668
> 15 3 5 4 4.5 -0.2711263
>
>
> I would like to plot y against time with a panel for each id,
> i.e. with something like
>
> xyplot(y~time|id, data=dat,type='l') or
>
> xyplot(currCow.mean~currCow.cm|cowid, data=mergeData, type='l',
> panel=function(x,y,...){
> panel.xyplot(x,y)
> }
> )
>
>
> Then, I would additionally like to have two vertical lines in
> each panel, and these are defined by cm1 and cm2. My
> understanding of xyplot...