R/rm.dupl.R

rm.dupl <- function(d1,d2,...){
         dd1 <- do.call("paste", as.data.frame(d1))
         dd2 <- do.call("paste", as.data.frame(d2))
         d <- d2[! dd2 %in% dd1, ]
         return(d)
}

Try the SPODT package in your browser

Any scripts or data that you put into this service are public.

SPODT documentation built on May 2, 2019, 9:43 a.m.