[R] Locate first index
Spencer Graves
spencer.graves at pdf.com
Fri Sep 19 20:29:48 CEST 2003
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
>
>______________________________________________
>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