I have a list like
$`1`
[1] 1959 13
$`2`
[1] 2280 178 13
$`3`
[1] 2612 178 13
$`4`
[1] 2902 178 13
And the structure is something like:
structure(list(`1` = c(1959, 13), `2` = c(2280, 178, 13), `3` = c(2612,
178, 13), `4` = c(2902, 178, 13)......,.Names = c("1", "2", "3", "4"....)
How can I combine the lists within this list and produce a list like:
$`list`
[1] 1959 13
[2] 2280 178 13
[3] 2612 178 13
[4] 2902 178 13
This is the closest I can get to what you’re asking for as a matrix:
Or using
plyrMaybe you just don’t want names ?
If so…
I think I just don’t get the output structure you’re after.