浏览代码

fixed anti join

pull/10/head
David 7 年前
父节点
当前提交
668eb2a54f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      R/move_together.R

+ 1
- 1
R/move_together.R 查看文件

@@ -47,7 +47,7 @@ move_together <- function(lhs, rhs, type) {
col_combiner <- dplyr::left_join
row_combiner <- dplyr::semi_join
} else if (type == "anti_join") {
col_combiner <- dplyr::semi_join
col_combiner <- dplyr::left_join
row_combiner <- dplyr::anti_join
} else if (type == "union") {
col_combiner <- dplyr::full_join

正在加载...
取消
保存