list_bundles {emuR} | R Documentation |
List bundles of emuDB
Description
List all bundles of emuDB or of particular session.
Usage
list_bundles(
emuDBhandle,
session = NULL,
sessionPattern = ".*",
bundlePattern = ".*"
)
Arguments
emuDBhandle |
emuDB handle as returned by |
session |
optional session (depricated!) |
sessionPattern |
A regular expression pattern matching session names to be searched for in the database. Note: "_ses$" is appended to this RegEx automatically |
bundlePattern |
A regular expression pattern matching bundle names to be searched for in the database. Note: "_bndl$" is appended to this RegEx automatically |
Value
data.frame object with columns session and name of bundles
Examples
## Not run:
##################################
# prerequisite: loaded ae emuDB
# (see ?load_emuDB for more information)
# list bundles of session "0000" of ae emuDB
list_bundles(emuDBhandle = ae,
session = "0000")
## End(Not run)
[Package emuR version 2.5.0 Index]