inventory | R Documentation |
This function has largely been superseded by check_data_names()
.
inventory(x, obj, ..., .strict = FALSE)
x |
model object. |
obj |
data.frame to pass to |
... |
capture dplyr-style parameter requirements. |
.strict |
whether to stop execution if all requirements are present
( |
If parameter requirements are not explicitly stated, the requirement defaults to
all parameter names in x
. Note that, by default,
the inventory is not .strict
unless the user explicitly
states the parameter requirement. That is, if parameter requirements are explicitly
stated, .strict
will be set to TRUE
if a value .strict
was not
passed in the call.
x
is returned invisibly.
check_data_names()
## Not run:
inventory(mod, idata, CL:V) # parameters defined, inclusively, CL through Volume
inventory(mod, idata, everything()) # all parameters
inventory(mod, idata, contains("OCC")) # all parameters containing OCC
inventory(mod, idata, -F) # all parameters except F
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.