Displaying 1 result from an estimated 1 matches for "groupingfactor2".
Did you mean:
groupingfactor
2013 Dec 13
1
data point labeling in xyplot
Hi Folks,
I have data with a format like:
ID y param1 param2 groupingFactor1 groupingFactor2.....
1 ...
1
1
1
2
2
2
2
3
3
3
so several grouping factors and repeated measures. I am using trellis
and xyplot to get plot with several grouping factors.
something like xyplot(y~x|grouping1*grouping2, data=na.omit(mydata),
panel=function{panel.xyplot(x,y);....}); Lets say x is the x axis
pa...