grepObjNames {rrMisc} | R Documentation |
The function grepObjNames() gets the objects whose names contain the specified search string.
grepObjNames(part.name, ...)
part.name |
search string in object names |
... |
Arguments passed to further functions |
Unlike subset which works with '==' or '%in%', here search is performed in a fashion of 'like', meaning substrings are recognized.
column names which values contain NAs or indication about NAs
under continuous developement
Roland Rapold
none
grepColEntries
grepColNames
grepColNA
grepNotCompleteEntries
grepMultipleEntries
grepRowNames
grepColNegNum
grepColFactors
a <- 1 aa <- 1 b <- 1 ab <- 1 A <- 1 Aa <- 1 b <- 1 print(grepObjNames("a")) print(grepObjNames("A")) print(grepObjNames("b"))