Skip to content
Prev 323300 / 398513 Next

How can I extract part of the data with a selection criterion?

Hi,

Try ab[a==3,]

You're selecting only rows for which a==3 (before the comma), and all
columns (empty condition for column index, after the comma)

Patrick

2013/5/9 jpm miao <miaojpm at gmail.com>: