У меня есть следующий список, и я хотел бы создать data.frame с каждым из списков (их много).Вот пример:
v11 <- c("was_on_the_moon", "safe", "best", "super")
v22 <- c("no", "yes", "three", "four")
dat1 <- data.frame(cbind(v11, v22))
v11 <- c("was_on_the_moon", "safe", "best", "super")
v22 <- c("no", "yes", "three", "four")
dat2 <- data.frame(cbind(v11, v22))
list_first <- list(dat1, dat2)
Результат должен быть следующим:
was_on_the_moon safe best super
1 yes yes three four
2 no sure check four