[R] If loops

Uwe Ligges ligges at statistik.uni-dortmund.de
Sun Oct 3 15:45:12 CEST 2004


Laura Collins wrote:

> Hi,
> 
>  
> 
> I'm a complete beginner to all this so I was hoping someone could help
> me!
> 
>  
> 
> What I'm trying to do is to write a function that returns the
> coordinates where a vector x is equal to a.  So say I invent a vector x:
> 
> 
> x<-c(,5,8,9,8,3).
> 
> If a is a<-8.
> 
>  
> 
> I want the function to return the coordinates of x where the number 8
> appears (i.e. 2 4).
> 
> I know I need to set up an if loop but I'm really not sure how to do
> this.
> 
>  
> 
> Any advice or clues will be much appreciated.




which(a==x)

Please read "An Introduction to R", the R FAQ and learn to use the help 
system as well as the mailing list archives (as described in the Posting 
Guide cited below at the end of your).


Uwe Ligges


>  
> 
> Thanks,
> 
>  
> 
> Laura
> 
> 
> 	[[alternative HTML version deleted]]
> 
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html




More information about the R-help mailing list