I have two lists with different structure:
listA <- list(c(\"a\",\"b\",\"c\"), c(\"d\",\"e\")) listB <- list(0.05, 0.5) listA [[1]] [1] \"a\" \"b\" \"c\"
Another way without using do.call:
cbind(data.frame(listA), data.frame(listB))