【发布时间】:2021-05-01 01:26:01
【问题描述】:
我有带列的数据框:
(Intercept) population urbanisation density temperature h_dev_index
0 0 0 0 0 0
我也有数字向量: k_koef
(Intercept) population urbanisation density
-5.731845e-01 5.027081e-03 1.362376e-02 -4.130975e-04
我需要将一列连接到另一列:
(Intercept) population urbanisation density temperature h_dev_index
0 0 0 0 0 0
-5.731845e-01 5.027081e-03 1.362376e-02 -4.130975e-04 NA NA
我应该如何解决我的问题?
【问题讨论】:
标签: r dataframe join vector merge