Skip to content
Back to formatted view

Raw Message

Message-ID: <48DE356F.7030507@yahoo.co.uk>
Date: 2008-09-27T13:30:23Z
From: Bastian Offermann
Subject: remove multiple elements from vector

Hello all,

one brief question

I would like to remove double/triple elements from a vector, e.g.

0 1 1 1 1 2 2 2 4 5 6 6

but keep one of these multiple ones. Should look like this finally:

0 1 2 4 5 6

My function does not work somehow

for(i in 2 : length(x)) {
                                 if(x[i]==x[i-1]) x <- x[-(i-1)]
                             }

any suggestion? Thanks.