Get column index from label in a data frame

前端 未结 7 947
忘掉有多难
忘掉有多难 2020-12-04 05:49

Say we have the following data frame:

> df
  A B C
1 1 2 3
2 4 5 6
3 7 8 9

We can select column \'B\' from its index:

&g         


        
相关标签:
7条回答
  • 2020-12-04 06:53

    The following will do it:

    which(colnames(df)=="B")
    
    0 讨论(0)
提交回复
热议问题