如何逐行构建数据框而不是列式?

时间:2016-06-28 05:41:01

标签: r

a <- "dog cat carrot cabbage"
b <- "orange cat chair cabbage"
c <- "dog phone book beach"
x <- data.frame(a,b,c)
> x
                       a                        b                    c
1 dog cat carrot cabbage orange cat chair cabbage dog phone book beach

所以这是建在专栏中的。我想要的是一个1列数据框,每个字符串作为一行。我该怎么做?

4 个答案:

答案 0 :(得分:6)

d <- c(a,b,c)
data.frame(d)

输出:

                         d
1   dog cat carrot cabbage
2 orange cat chair cabbage
3     dog phone book beach

答案 1 :(得分:1)

另一种选择是使用SELECT * FROM `my_table` WHERE added_on BETWEEN EXTRACT( YEAR_MONTH FROM `added_on` )='201606' AND EXTRACT ( YEAR_MONTH FROM `added_on` )='201706'

as.data.frame

您也可以使用as.data.frame(c(a,b,c)) # c(a, b, c) #1 dog cat carrot cabbage #2 orange cat chair cabbage #3 dog phone book beach

rbind

答案 2 :(得分:0)

您可以按行构建矩阵并将其转换为df

data.frame(matrix(c(1, 7, 4, 6, 2, 0, 6, 2, 8), 3, 3, byrow = TRUE))

答案 3 :(得分:0)

使用rbind和as.data.frame函数可以获得所需的输出。

as.data.frame(rbind(a,b,c))