Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

> df[,2]
[1] 2 5 8

Is there a way to get the index (2) from the column label ('B')?

share|improve this question

2 Answers

up vote 12 down vote accepted

you can get the index via grep and colnames:

grep("B", colnames(df))
[1] 2

or use

grep("^B$", colnames(df))
[1] 2

to only get the columns called "B" without those who contain a B e.g. "ABC".

share|improve this answer
Your original example's advantages could be demonstrated in code if you showed its use in something like df[ , grep("^B", colnames(df)) ], i.e, returning the dataframe columns starting with "B". Feel free to use in a further edit if you agree. – DWin Dec 13 '10 at 14:56
Or even df[ , grep("^[BC]", colnames(df)) ], i.e., the columns that start with either B or C. – DWin Dec 13 '10 at 15:03
@Dwin: As @aix already said, the asker wants the index. But I also usually use grep the way you describe it. – Henrik Dec 13 '10 at 16:05

The following will do it:

which(colnames(df)=="B")
share|improve this answer
1  
The problem with grep is also the advantage, namely that it uses regular expressions (so you can search for any pattern in your colnames). To just get the colnames "B" use "^B$" as the pattern in grep. ^ is the metacharacter for the beginning and $ for the end of a string. – Henrik Dec 13 '10 at 9:44
2  
You don't even need which. You can directly use df[names(df)=="B"] – nico Dec 13 '10 at 9:56
3  
@nico The question is to get the index of the column. – NPE Dec 13 '10 at 10:33
oh, you're right. Didn't read correctly. – nico Dec 13 '10 at 10:36
"Which" worked for me in every case. I couldn't get a column with the name "fBodyAcc-meanFreq()-Z" using grep. – Kabamaru Mar 7 at 22:44
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.