Joining tables based on different column names

后端 未结 3 1160
借酒劲吻你
借酒劲吻你 2021-01-20 23:28

I was watching a video[1] by Greg Reda about Pandas to see what Pandas can do how it compares with data.table. I was surprised to learn how difficult it was to join tables in d

3条回答
  •  独厮守ぢ
    2021-01-21 00:18

    Update: All the features listed below are implemented and is available in the current stable version of data.table v1.9.6 on CRAN.


    There are at least these improvements possible for joins in data.tables.

    • merge.data.table gaining by.x and by.y arguments

    • Using secondary keys to join using both forms discussed above without need to set keys, but rather by specifying columns on x and i.

    The simplest reason is that we've not managed to get to it yet.

提交回复
热议问题