sleuth {mvbutils} | R Documentation |
Looks for objects that regex-match pattern
, in all attached workspaces (as per search()
) and any maintained packages (see maintain.packages
).
sleuth(pattern, ...)
pattern |
regex |
... |
other args to |
A list of environments containing one or more matching objects, with the object names returned as a character vector within each list element.
sleuth( '^rm')
# On my setup, that currently gives:
#$ROOT
#[1] "rmsrc"
#
#$`package:stats`
#[1] "rmultinom"
#
#$`package:base`
#[1] "rm"
#
#$mvbutils
#[1] "rm.pkg"
#
#$handy2
#[1] "rmultinom"
#