R/setdiff_nrow.R

Defines functions setdiff_nrow

Documented in setdiff_nrow

#' Get the number of rows that differ between 2 dataframes
#' @importFrom dplyr setdiff
#' @export

setdiff_nrow <-
        function(x, y) {
                nrow(dplyr::setdiff(x, y))
        }
patelm9/somersault2 documentation built on Dec. 16, 2019, 12:45 a.m.