[R] Is there a quicker way to drop a data frame column than setting it to NULL?
Dimitri Shvorob
dimitri.shvorob at gmail.com
Sun Jan 24 12:58:50 CET 2010
If I want to drop columns x, y, z from dataframe df, is there a better
alternative to
df$x = NULL
df$y = NULL
df$z = NULL
There are sufficiently many columns remaining to make
df = subset(df, select = c(a,b,c,d[etc]))
cumbersome.
Thank you.
--
View this message in context: http://n4.nabble.com/Is-there-a-quicker-way-to-drop-a-data-frame-column-than-setting-it-to-NULL-tp1288617p1288617.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list