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

I have a number of columns that I would like to drop from a data frame. I know that we can drop them using something like:

df$x <- NULL

but I was hoping to do this with fewer commands.

Also, I know that I could use this:

df[ -c(1,3:6, 12) ]

but I am concerned that the relative position of my variables may change.

Given how powerful R is, I figured I would ask to see if there is another way beyond dropping each column 1 by 1.

Thanks in advance.

share|improve this question

8 Answers

up vote 102 down vote accepted

You can use a simple list of names :

DF <- data.frame(
  x=1:10,
  y=10:1,
  z=rep(5,10),
  a=11:20
)
drops <- c("x","z")
DF[,!(names(DF) %in% drops)]

Or, alternatively, you can make a list of those to keep and refer to them by name :

keeps <- c("y","a")
DF[keeps]
share|improve this answer

There's also the subset command, useful if you know which columns you want:

df <- data.frame( a = 1:10, b = 2:11, c = 3:12 )
df <- subset(df, select = c(a,c))

UPDATED after comment by @hadley: To drop columns a,c you could do:

df <- subset(df, select = -c(a,c) )
share|improve this answer
1  
I really wish the R subset function had an option like "allbut = FALSE", which "inverts" the selection when set to TRUE, i.e. retains all columns except those in the select list. – Prasad Chalasani Jan 5 '11 at 14:56
2  
@prasad, see @joris answer below. A subset without any subset criteria is a bit of overkill. Try simply: df[c("a", "c")] – JD Long Jan 5 '11 at 15:16
@JD I knew that, but I like the syntactic convenience of the subset command where you don't need to put quotes around the column names -- I guess I don't mind typing a few extra characters just to avoid quoting names :) – Prasad Chalasani Jan 5 '11 at 15:18
oh that's a good point. I hadn't thought about the quote issue. – JD Long Jan 5 '11 at 15:24
31  
Or subset(df, select = -b)... – hadley Jan 5 '11 at 18:32
show 2 more comments

You could use %in% like this:

df[, !(colnames(df) %in% c("x","bar","foo"))]
share|improve this answer

There is a potentially more powerful strategy based on the fact that grep() will return a numeric vector. If you have a long list of variables as I do in one of my dataset, some variables that end in ".A" and others that end in ".B" and you only want the ones that end in ".A" (along with all the variables that don't match either pattern, do this:

dfrm2 <- dfrm[ , -grep("\\.B$", names(dfrm) ]

For the case at hand, using Joris Meys example, it might not be as compact, but it would be:

DF[,-grep(paste(paste("^",drops,"$", sep=""), sep="|"), names(DF) )]
share|improve this answer

If you want remove the columns by reference and avoid the internal copying associated with data.frames then you can use the data.table package and the function :=

You can pass a character vector names to the left hand side of the := operator, and NULL as the RHS.

library(data.table)

df <- data.frame(a=1:10, b=1:10, c=1:10, d=1:10)
DT <- data.table(df)
# or more simply  DT <- data.table(a=1:10, b=1:10, c=1:10, d=1:10) #

DT[, c('a','b') := NULL]

If you want to predefine the names as as character vector outside the call to [, wrap the name of the object in () or {} to force the LHS to be evaluated in the calling scope not as a name within the scope of DT.

del <- c('a','b')
DT <- data.table(a=1:10, b=1:10, c=1:10, d=1:10)
DT[, (del) := NULL]
DT <-  <- data.table(a=1:10, b=1:10, c=1:10, d=1:10)
DT[, {del} := NULL]
# force or `c` would also work.   
share|improve this answer

I keep thinking there must be a better idiom, but for subtraction of columns by name, I tend to do the following:

df <- data.frame(a=1:10, b=1:10, c=1:10, d=1:10)

# return everything except a and c
df <- df[,-match(c("a","c"),names(df))]
df
share|improve this answer
Not a good idea to negate match - df[,-match(c("e","f"),names(df))] – hadley Jan 5 '11 at 18:33
1  
Uh oh, really? Why not? – JD Long Jan 8 '11 at 22:17
@hadley why not? – Abe Mar 12 at 7:37
Because of the example I gave: if there are no matches you get an error – hadley Mar 14 at 15:23

Another possibility:

df <- df[, setdiff(names(df), c("a", "c"))]

or

df <- df[, grep('^(a|c)$', names(df), invert=TRUE)]
share|improve this answer
Note that the closing ")" of grep function should be moved further so as to include the x and invert arguments. – mbask Jan 11 '12 at 11:19
@Charlie oops, thanks--fixed now. – scentoni Jan 11 '12 at 19:08

Out of interest, this flags up one of R's weird multiple syntax inconsistencies. For example given a two-column data frame:

df <- data.frame(x=1, y=2)

This gives a data frame

subset(df, select=-y)

but this gives a vector

df[,-2]

This is all explained in ?[ but it's not exactly expected behaviour. Well at least not to me...

share|improve this answer

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.