Does anyone know how to remove an entire column from a data.frame in R? For example if I am given this data.frame:

> head(data)
   chr       genome region
1 chr1 hg19_refGene    CDS
2 chr1 hg19_refGene   exon
3 chr1 hg19_refGene    CDS
4 chr1 hg19_refGene   exon
5 chr1 hg19_refGene    CDS
6 chr1 hg19_refGene   exon

and I want to remove the 2nd column.

Best, Nanami

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

You can set it to NULL.

> Data$genome <- NULL
> head(Data)
   chr region
1 chr1    CDS
2 chr1   exon
3 chr1    CDS
4 chr1   exon
5 chr1    CDS
6 chr1   exon
link|improve this answer
13  
or you can use: Data <- Data[,-2] – Ian Fellows Jun 8 '11 at 23:09
2  
with the comma you can also control the "drop" argument, which when FALSE means the data.frame stays a data.frame when the result consists of only one column - without the comma you will always get a data.frame whether multiple columns are left or just one - drop is ignored for the [-2] extraction – mdsumner Jun 9 '11 at 6:17
2  
@mdsumner Data[-2] don't need drop argument cause it always return data.frame from data.frame. And I think this is much better way to localized columns (and only columns) in data.frame (and it's faster). Check: cars[-1] (one col data.frame) or better cars[-(1:2)]: data frame with 0 columns and 50 rows. – Marek Jun 9 '11 at 6:41
1  
You can also write Data[2] <- NULL – Wojciech Sobala Jun 9 '11 at 6:52
4  
Minor tip: When removing multiple columns Data[c(1,2)]<-list(NULL) is needed. – Marek Jun 9 '11 at 6:59
show 1 more comment
feedback

To remove one or more columns by name, when the column names are known (as opposed to being determined at run-time), I like the subset() syntax. E.g. for the data-frame

df <- data.frame(a=1:3, d=2:4, c=3:5, b=4:6)

to remove just the a column you could do

  Data <- subset( Data, select = -a )

and to remove the b and d columns you could do

  Data <- subset( Data, select = -c(d, b ) )

You can remove all columns between d and b with:

  Data <- subset( Data, select = -c( d : b )

As I said above, this syntax works only when the column names are known. It won't work when say the column names are determined programmatically (i.e. assigned to a variable). I'll reproduce this Warning from the ?subset documentation:

 Warning:

 This is a convenience function intended for use interactively.
 For programming it is better to use the standard subsetting
 functions like '[', and in particular the non-standard evaluation
 of argument 'subset' can have unanticipated consequences.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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