将列表转换为特定的数据帧格式

时间:2017-11-06 22:00:54

标签: r

我想转换一个类型列表:

<input type="radio" name="test"  :value="true" v-model="showcheck"/>

使用以下格式的数据框:

[[1]]
[1] 1 2 3 4 5
[[2]]
[1] 6 7 8 9 10

谢谢

2 个答案:

答案 0 :(得分:0)

试试这个:

L <- list(1:5,6:10)
gather(as.data.frame(L))

答案 1 :(得分:0)

如果您的列表是数字,这可能会有效。

L <- list(1:5,6:10)
Data_Frame <- as.data.frame(c(1:5,6:10),1)