简体   繁体   中英

extracting row labels (?) from a data.frame

Starting with a data.frame...

df = data.frame(k=c(1,5,4,7,6), v=c(3,1,4,1,5))
> df
  k v
1 1 3
2 5 1
3 4 4
4 7 1
5 6 5

I might run some number of arbitrary manipulations...

> foo1 = df[df$k>3,]
> foo2 = head(foo1[order(foo1$v),], 2)
> foo2
  k v
2 5 1
4 7 1

At this point foo2 has somehow retained the original row numbers from df (in this case 2 and 4).

How do I extract these?

> insert_magic_function_here(foo2)
[1] 2 4

我认为你正在寻找rownames

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM