search for: run40

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

Did you mean: run0
2004 Dec 13
2
lists within a list / data-structure problem
...re my data well: I want to extraxt various measures from my raw-data. These measures are of different sizes, so I decided to store them in a list, like: run1 <- list(Dom = (my_vector), mean = (my_single_number)) I can do that in a for loop for 40 runs, ending up with 40 lists: run1, run2, ..., run40. To have all the measurements neatly together I thought of making another list, containing 40 sub-lists: > ALL <- list(run1, run2,..., run40) > ALL [[1]] [[1]]$Dom [1] "my_vector" [[1]]$mean [1] "my_single_number" [[2]] [[2]]$Dom [1] "my_vector" [[2]]$...