如何将两个数据帧中的行组合成R中的一个数据帧?

时间:2017-07-20 21:19:42

标签: r dataframe

这就是我想要做的事情:

联合

$(document).ready(function() {
  $('form').on("change", ".state, .city", function(){
    [pseudo]
     if $(this) is not Z AND adjacent (state or city) is not Z
           fetch building options in the backend
    [end pseudo]
    }
   })
});

      df1
Col1 Col2 Col3
   7    1    8
   6    2    9
   3    6    3

进入这个:

      df2
Col1 Col2 Col3
   4    6    3
   5    7    8
   9    1    2

如果有人问过这个问题,我很抱歉。

谢谢!

1 个答案:

答案 0 :(得分:2)

你可以这样做:

df3 <- rbind(df1, df2)