Skip to content
Prev 389310 / 398506 Next

alternative to subset(dataframe, select = - column) in R

Thank you!
```
new_out <- new[ , "ID" != names( new ) ]
new[names(new) != "ID"]
```
worked as wanted, `new[-match("ID"), names(new)]` gave the error:
`Error in match("ID") : argument "table" is missing, with no default`.
Cheers
On Fri, Sep 24, 2021 at 7:33 PM Rui Barradas <ruipbarradas at sapo.pt> wrote: