Skip to content
Back to formatted view

Raw Message

Message-ID: <CAAxdm-6YUpNNEChRBWpL+_h4bsXSp-JBAWjo5H6T_A_bGt5GRw@mail.gmail.com>
Date: 2012-07-09T16:47:42Z
From: jim holtman
Subject: unique vs duplicate problem
In-Reply-To: <1341852148567-4635868.post@n4.nabble.com>

Here is one way of doing it -- you can create your own functions:

>  x <- c(1, 2, 3, 3)
>
> allDup <-
+ function (value)
+ {
+     duplicated(value) | duplicated(value, fromLast = TRUE)
+ }
>
> duped <- unique(x[allDup(x)])
> duped
[1] 3
>
> setdiff(unique(x), duped)
[1] 1 2
>
>


On Mon, Jul 9, 2012 at 12:42 PM, Nico902 <descostes at ciml.univ-mrs.fr> wrote:
> Hi,
>
> Let say I have a numeric vector:   x <- c(1, 2, 3, 3).
>
> I want on one hand numbers which are not duplicated ie "1,2" and duplicated
> "3".
>
> so I did:
>
>>duplicated(x)
> FALSE FALSE FALSE TRUE
>> unique(x)
> 1 2 3
>
> which is not what I want. Is there a function in R to have the following
> result:
>
>>duplicated(x)
> FALSE FALSE TRUE TRUE
>>unique(x)
> 1 2
>
> I could do it by programming some loops but I reckon somebody programmed a
> function already.
>
> Cheers.
>
>
>
> --
> View this message in context: http://r.789695.n4.nabble.com/unique-vs-duplicate-problem-tp4635868.html
> Sent from the R help mailing list archive at Nabble.com.
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.



-- 
Jim Holtman
Data Munger Guru

What is the problem that you are trying to solve?
Tell me what you want to do, not how you want to do it.