[R] A very simple question

Christos Hatzis christos.hatzis at nuverabio.com
Wed May 14 17:30:53 CEST 2008


> k <- c(1,1,1,2,2,1,1,1)
> k[k != 1]
[1] 2 2
> k[k != 2]
[1] 1 1 1 1 1 1
> k[k != 3]
[1] 1 1 1 2 2 1 1 1
> 

-Christos 

> -----Original Message-----
> From: r-help-bounces at r-project.org 
> [mailto:r-help-bounces at r-project.org] On Behalf Of Shubha 
> Vishwanath Karanth
> Sent: Wednesday, May 14, 2008 11:16 AM
> To: r-help at stat.math.ethz.ch
> Subject: [R] A very simple question
> 
> Hi R,
> 
>  
> 
> Suppose
> 
> l=c(1,1,1,2,2,1,1,1)
> 
>  
> 
> k[-which(k==1)]
> 
> [1] 2 2
> 
>  
> 
> k[-which(k==2)]
> 
> [1] 1 1 1 1 1 1
> 
>  
> 
> But,
> 
>  
> 
> k[-which(k==3)]
> 
> numeric(0)
> 
>  
> 
> I do not want this numeric(0), instead the whole k itself 
> should be my result... How do I do this?
> 
>  
> 
>  
> 
> Thanks,
> 
> Shubha
> 
>  
> 
> This e-mail may contain confidential and/or privileged 
> i...{{dropped:13}}
> 
> ______________________________________________
> 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.
> 
>



More information about the R-help mailing list