If I have a list called List A:
[[1]]
[1] 11.000000 1.500000 2.666667 2.833333 10.000000 1.500000
[[2]]
[1] 1.50 1.00 3.25 3.75 10.50 1.50
[[3]]
[1] 10.5 1.5 1.5 1.5 5.0 5.5
How can I unlist List A in R and get the output as per below:
[,1] [,2] [,3] [,4] [,5] [,6]
[,1] 11.000000 1.500000 2.666667 2.833333 10.000000 1.500000
[,2] 1.50 1.00 3.25 3.75 10.50 1.50
[,3] 10.5 1.5 1.5 1.5 5.0 5.5
If I simply use unlist() it returns a vector