Skip to content

How to remove a complete dataframe column

3 messages · Mark Marques, Brian Ripley, Michaell Taylor

#
I am using dataframes and I and I want to delete (remove) a specific
column by name ...
the data frame has 14 columns with several names and only need some.
I tried to overwrite the columns with a single value but that in not very
clean as I need to export the data to file.
The rm command gives me a warning message stating :
< remove: variable "rtu$Ri." was not found >
or there is another method to remove parts of a dataframe?
thanks in advance
Mark Marques
#
On Fri, 30 May 2003, Mark Marques wrote:

            
You make a copy selecting the names you want, as in

rtu2 <- rtu[!(names(rtu) %in% c("Ri", "another I do not want"))]

or

rtu3 <- rtu[c("var2", "var7")]
#
or, if you no longer want the columns and don't want to create more
objects, you could:

rtu$Ri <- NULL
On Fri, 2003-05-30 at 11:51, Mark Marques wrote: