sleuth {mvbutils} | R Documentation |
Generalized version of find
Description
Looks for objects that regex-match pattern
, in all attached workspaces (as per search()
) and any maintained packages (see maintain.packages
).
Usage
sleuth(pattern, ...)
Arguments
pattern |
regex |
... |
other args to |
Value
A list of environments containing one or more matching objects, with the object names returned as a character vector within each list element.
See Also
Examples
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"
#
[Package mvbutils version 2.8.232 Index]