[R] Eliminating repeated elements in a vector
Andrew C. Ward
s195404 at student.uq.edu.au
Wed Apr 23 00:46:24 CEST 2003
> x <- c(1,1,2,3,4,4,5)
> x
[1] 1 1 2 3 4 4 5
> x <- unique(x)
> x
[1] 1 2 3 4 5
Regards,
Andrew C. Ward
CAPE Centre
Department of Chemical Engineering
The University of Queensland
Brisbane Qld 4072 Australia
andreww at cheque.uq.edu.au
Quoting Francisco J Molina <fjmolina at lbl.gov>:
> Subject: Eliminate repeated components from a vector
> X-Mailer: VM 7.00 under 21.4 (patch 6) "Common Lisp" XEmacs Lucid
> Reply-To: fjmolina at lbl.gov
> FCC: /home/f/.xemacs/mail/sent
>
>
> Does anyone know how I can eliminate repeated elements from a
> vector?
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://www.stat.math.ethz.ch/mailman/listinfo/r-help
>
More information about the R-help
mailing list