x=runif(12) y=runif(12) w=runif(12) mydf<-data.frame(cbind(x,y,w)) head(mydf)
mydf<-subset(mydf, select=c(-x,-w)) head(mydf) On Tue, Sep 29, 2009 at 4:27 PM, Rolf Turner <r.tur...@auckland.ac.nz>wrote: > > On 30/09/2009, at 9:15 AM, milton ruser wrote: > > May be this: >> >> FRAME <- FRAME[-c(NAME1, NAME2)] >> or >> FRAME<- subset(FRAME, select=(-NAME1, -NAME2)) >> > > This is ridiculous advice. Try things out before you suggest them. > > cheers, > > Rolf Turner > > ###################################################################### > Attention: This e-mail message is privileged and confidential. If you are > not the intended recipient please delete the message and notify the sender. > Any views or opinions presented are solely those of the author. > > This e-mail has been scanned and cleared by MailMarshal > www.marshalsoftware.com > ###################################################################### > [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.