search for: ii_df

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

Did you mean: mi_df
2006 Nov 06
0
How can you get N replicates of a multi-screen, multivariate time series plot?
...0 40000 5743 29107 43887 8 109 8 2000 20000 22000 7800 17717 35294 I want to structure this graph to present 3 screens that each represent 2 time series over TRIAL. The following code gives me just what I'm looking for. library(zoo) library(lattice) z <- zoo(data.matrix(ii_df[,3:8]), ii_df[,2]) xyplot(z, screens = c(1, 2, 3, 1, 2, 3), col = 1:6, pch = 1:6, type = "b") This works great. Now, I'd like to repeat this basic graph for 100 levels of UNIT. I have two questions. First, I've tried to replicate this method using a trellis graph without much...