This follows from Extract rows with duplicate values in two or more fields but different values in another field
As suggested, I'm posting additional request separately. First code then question.
library(data.table)
# load the data
customers <- structure(list(
NAME = c("B V RAMANA ", "K KRISHNA", "B SUDARSHAN", "B ANNAPURNA ",
"BIKASH BAHADUR CHITRE", "KOTLA CHENNAMMA ", "K KRISHNA",
" B V RAMANA", "B ANNAPURNA", "ZAITOON BEE", "BIMAN BALAIAH",
" KOTLA CHENNAMMA ", "B V RAMANA"),
DOB = c("15-01-1960", "01-05-1964", "12-03-1975", "12-12-1962",
"14-05-1983", "15-07-1958", "01-05-1964", "15-01-1960",
"12-12-1962", "20-02-1960", "10-03-1964", "15-07-1958",
"15-01-1960"),
ID = c(" 502910", "502737", "502995", " 502878", "502984",
"502466", "502737", "502902 ", "502877 ", "503000",
"502979", "502467", "502902 "),
PIN = c(500033, 500050, 500032, 500084, 500032, 500032, 500084, 500035,
500084, 500084, 500032, 500032, 500032)),
.Names = c("NAME", "DOB", "ID", "PIN"),
class = c("data.table", "data.frame"), row.names = c(NA, -13L))
# function for Duplicate Key Exclusion
dupKeyEx <- function(DT, dup_cols, unique_cols) {
cols <- c(dup_cols, unique_cols)
mDT <- DT[!duplicated(DT, by=cols), .N, by=dup_cols][N > 1L]
ans <- unique(DT[mDT[, !"N"], on=dup_cols], by=cols)
setorderv(ans, c(dup_cols, unique_cols))
return(ans)
}
Running the function gets zero results because of whitespaces in the beginning or end of NAME
and ID
columns in customers
table:
dup_cols <- c("NAME", "DOB")
unique_cols <- "ID"
dupKeyEx(customers, dup_cols, unique_cols)
Empty data.table (0 rows) of 4 cols: NAME,DOB,ID,PIN
So we trim, ie, remove whitespaces from both ends of the relevant columns:
library(stringr)
customers[, `:=`(NAME = str_trim(NAME),
ID = str_trim(ID))]
Now we get the expected results:
dupKeyEx(customers, dup_cols, unique_cols)
NAME DOB ID PIN
1: B ANNAPURNA 12-12-1962 502877 500084
2: B ANNAPURNA 12-12-1962 502878 500084
3: B V RAMANA 15-01-1960 502902 500035
4: B V RAMANA 15-01-1960 502910 500033
5: KOTLA CHENNAMMA 15-07-1958 502466 500032
6: KOTLA CHENNAMMA 15-07-1958 502467 500032
I was wondering if the columns in dup_cols
and unique_cols
(together assigned in cols
variable inside the dupKeyEx
function) could be trimmed inside the function itself. That way, I won't need to remember to trim the relevant columns before using the dupKeyEx
function.
I searched but was unable to find ways to refer to columns inside cols
variable and apply stringr::str_trim()
on them inside the dupKeyEx
function. Any help would be appreciated.