Displaying 1 result from an estimated 1 matches for "2a_s1".
Did you mean:
1a_s1
2010 Sep 21
2
Lattice xyplot and groups
...q(-10, 10, 0.5)
x2 <- seq(-10, 10, 0.1)
df <- data.frame(x=x1, y=sin(x1), id='1a_s1', type='A', set='s1')
df <- rbind(df, data.frame(x=x1, y=cos(x1), id='1b_s1', type='B', set='s1'))
df <- rbind(df, data.frame(x=x1, y=3*sin(2*x1), id='2a_s1', type='A', set='s1'))
df <- rbind(df, data.frame(x=x1, y=3*cos(2*x1), id='2b_s1', type='B', set='s1'))
df <- rbind(df, data.frame(x=x2, y=sin(x2), id='1a_s1', type='A', set='s2'))
df <- rbind(df, data.frame(x=x2, y=cos(x...