R rbind - 合并两个数据帧中的行时出现意外符号错误

时间:2014-01-05 14:23:09

标签: r rbind

我正在尝试从两个独立的数据框中垂直合并数据,如下所示。我相信我符合标准,即两者都有相同的列名。有谁知道我为什么会收到以下错误?

> str(rnorm.SR.df)
'data.frame':   20 obs. of  2 variables:
 $ criticalMeasureCount: num  3.37 1.77 1.29 1.79 2.09 ...
 $ projectType        : chr  "SR" "SR" "SR" "SR" ...`

> str(rnorm.nonSR.df)
'data.frame':   30 obs. of  2 variables:
 $ criticalMeasureCount: num  3.635 1.057 0.836 3.722 5.887 ...
 $ projectType        : chr  "Non-SR" "Non-SR" "Non-SR" "Non-SR" ...
> rnorm.allprojects.df <- rbind(data rnorm.nonSR.df, data rnorm.SR.df)
Error: unexpected symbol in "rnorm.allprojects.df <- rbind(data rnorm.nonSR.df"

感谢您的帮助

1 个答案:

答案 0 :(得分:3)

  

错误:“rnorm.allprojects.df&lt; - rbind(data rnorm.nonSR.df”

中的意外符号

“data rnorm.nonSR.df”中的“数据”是什么?只是一个错字,不是吗?可能你的意思是:

rnorm.allprojects.df <- rbind(rnorm.nonSR.df, rnorm.SR.df)