[R] remove repeated string in list

JS Huang js.huang at protective.com
Thu Mar 5 05:08:57 CET 2015


Hi,

  Here is one for preserving the first strings.  as.numeric in the previous
posting is not necessary.

> temp
$set1
[1] "a" "b" "d" "x"

$set2
[1] "b" "c" "q" "m"

$set3
[1] "b" "f" "e" "k" "q" "h"

> sapply(1:length(temp),function(x){c <- list(); for (j in 1:x){c <-
> c(c,temp[[j]])}; temp[[x]][table(unlist(c))[temp[[x]]]==1]})
[[1]]
[1] "a" "b" "d" "x"

[[2]]
[1] "c" "q" "m"

[[3]]
[1] "f" "e" "k" "h"




--
View this message in context: http://r.789695.n4.nabble.com/remove-repeated-string-in-list-tp4704166p4704191.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list