[R] How to read a row dataset one by one

Francisco J. Zagmutt gerifalte28 at hotmail.com
Sat Jun 11 00:52:20 CEST 2005


You could use

by(dat,row.names(dat), print) #It will return a list with results for each 
row

Is this what you want?

Cheers

Francisco

>From: Jan Sabee <jan.sabee at gmail.com>
>Reply-To: Jan Sabee <jan.sabee at gmail.com>
>To: R-help at stat.math.ethz.ch
>Subject: [R] How to read a row dataset one by one
>Date: Fri, 10 Jun 2005 10:32:15 +0200
>
>Dear all,
>How to read a row dataset one by one and then print it.
>
>x1 x2 x3 x4 x5   y
>a  b  a  c  c    M1
>c  b  b  c  c    M4
>c  c  a  c  c    M2
>c  a  c  a  a    M2
>c  c  a  a  a    M1
>c  a  b  c  a    M3
>c  c  a  b  c    M3
>c  a  c  a  b    M2
>c  c  a  b  a    M1
>
>I need a result like
>read row no 1,
>[1] a  b  a  c  c    M1
>read row no 2,
>[1] c  b  b  c  c    M4
>.
>.
>.
>the last row,
>[1] c  c  a  b  a    M1
>
>Kind regards,
>Jan Sabee
>
>______________________________________________
>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