[R] Re move a number from a vector
Albert Greinoecker
albert.greinoecker at uibk.ac.at
Tue Mar 18 14:05:28 CET 2008
does
> x[!x == remove.value]
do what you need?
[1] 2 6 9 10
regards,
Albert
Am Dienstag, den 18.03.2008, 05:21 -0700 schrieb Josh Roofchop:
> This should be an easy one, but I haven't been able to figure it out,
>
> x<-c(2, 4, 6, 9, 10)
> #how do I remove a single value
> x<-x[-2] # will remove the second element of the vector not the number 2
>
> This is part of a loop that looks a little like this...
>
> x<-c(2, 4, 6, 9, 10)
> remove.value<-4
> #then I need to remove the value returned by the loop.
>
> Thanks,
> Josh
>
More information about the R-help
mailing list