othernames {splitstackshape} | R Documentation |
Extract All Names From a Dataset Other Than the Ones Listed
Description
A convenience function for setdiff(names(data), -some_vector_of_names-)
.
Usage
othernames(data, toremove)
Arguments
data |
The input |
toremove |
The |
Value
A character vector of the remaining names.
Author(s)
Ananda Mahto
See Also
Examples
mydf <- data.frame(a = 1:2, b = 3:4, c = 5:6)
splitstackshape:::othernames(mydf, "a")
[Package splitstackshape version 1.4.8 Index]