I have the following list of data frames and each data frame has 3 variables (a, b and c)
my.list <- list(d1, d2, d3, d4)
Inside my data frame, I have duplicated strings in "a" and I want to delete the rows with duplicated values
The current code i am using:
my.listnew <- lapply(my.list, function(x) unique(x["a"]))
The problem i have with this code is that the other 2 columns "b" and "c" are gone and I want to keep them, while the duplicated rows are deleted
Use
duplicated
to remove the duplicated values in columna
while keeping other columns.