基于特定向量在Data.frame中创建观察

时间:2018-05-31 16:12:09

标签: r

所以在我的情况下,我有一个data.frame,如下所示。

date <- c("13.02","12.02","10.01")
text <- c("textabc")
time <- c("10 o'clock")

最后我的data.frame应该是这样的:

enter image description here

因此,对于每个日期字符串,data.frame中都应该有一个新的观察。 我怎么能这样做?

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

cbind.fill()

尝试rowr
library(rowr)
names <- c("text", "date", "time")
df <- cbind.fill(text, date, time)
colnames(df) <- names
# df output
     text  date       time
1 textabc 13.02 10 o'clock
2 textabc 12.02 10 o'clock
3 textabc 10.01 10 o'clock