Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 173 Bytes

transpose-list.md

File metadata and controls

7 lines (5 loc) · 173 Bytes

Transpose a List

Kevin Ushey tweeted this gem. To transpose a list in R.

transpose <- function(list) do.call(Map, c(c, list))