Skip to content
Prev 139529 / 398506 Next

using nrow to identify one row

nrow is for number of rows in matrix/data.frame, here you can use:

NROW(temp[1,])
length(temp[1,])

But if you want the index of row try this:

unique(row(temp)[1,])
On 14/03/2008, Gregory Gentlemen <gregory_gentlemen at yahoo.ca> wrote: