Is there any method to combine data frames properly?

后端 未结 3 479
野趣味
野趣味 2021-01-29 11:14

I have a problem with combining data frames which share the same rows. I imported rasters from different folders and converted them into data frames and tried to combine them to

3条回答
  •  离开以前
    2021-01-29 11:37

    In dplyr you will find the inner_join or left_join functions (using the by = c() parameter to specify the join column).

    I'd recommend those as an easy way of linking data, especially if you're familiar with SQL.

提交回复
热议问题