search for: 1a_s1

Displaying 1 result from an estimated 1 matches for "1a_s1".

Did you mean: 2a_s1
2010 Sep 21
2
Lattice xyplot and groups
...plot with xyplot(type='l'), the first and last point are joined into a closed line that traverses the whole plot from left to right. This is an example showing the problem: library(lattice) x1 <- seq(-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...