Have you considered "which", as in the following: > a <- rep(1:2, 2)
> a
[1] 1 2 1 2
> which(a==1)
[1] 1 3
> which(a==1)[1]
[1] 1


hope this helps. spencer graves

Cezar Augusto de Freitas Anselmo wrote:

Hi, all. I'd like to know if exists a manner to get the first index where
a condition is attained in a vector. For example,

There is a better solution than

first.index <- table(subject[corretor==27])[1]

(give me the subject for the first time that corretor is 27)?

Thanks,

========================================
Cezar Freitas (ICQ 109128967)
IMECC - UNICAMP
Campinas, SP - Brasil

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help



______________________________________________ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Reply via email to