[Rd] PR#6614
Peter Dalgaard
p.dalgaard at biostat.ku.dk
Thu Feb 23 00:23:59 CET 2006
"Gabor Grothendieck" <ggrothendieck at gmail.com> writes:
> Try this:
>
> subset(iris, select = - Species)
Or, canonically,
nm <- names(iris)
iris[, nm != "Species" ]
iris[, -match("Species", nm)]
>
> On 2/22/06, davidhughjones at gmail.com <davidhughjones at gmail.com> wrote:
> > I agree with the submitter that this needs some kind of solution.
> > Although data.frame[,-12] works, how do I drop a named column (the
> > most common use case)? (I found this bug while searching for an
> > answer.)
> >
> > cheers
> > David
> >
> > ______________________________________________
> > R-devel at r-project.org mailing list
> > https://stat.ethz.ch/mailman/listinfo/r-devel
> >
>
> ______________________________________________
> R-devel at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel
>
--
O__ ---- Peter Dalgaard Øster Farimagsgade 5, Entr.B
c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K
(*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk) FAX: (+45) 35327907
More information about the R-devel
mailing list