I have a list of vectors:
asdf = list(c(1, 2, 3, 4, 5), c(10, 20, 30, 40, 50))
Now I want to "transpose" it, that is, obtain a list of 5 pairs instead of a pair of lists of 5.
To be more specific, I want the result to be analogous to the result of typing:
transposedAsdf = list(c(1, 10), c(2, 20), c(3, 30), c(4, 40), c(5, 50))
But I don't know how to achieve this. How to?