Displaying 1 result from an estimated 1 matches for "my_single_number".
2004 Dec 13
2
lists within a list / data-structure problem
Dear all,
this is a rather basic question; i am not sure how to structure 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...