mdl_tbl {rmdl} | R Documentation |
Model tables
Description
The model_table()
or mdl_tbl()
function creates a mdl_tbl
object that
is composed of either fmls
objects or mdl
objects, which are
thin/informative wrappers for generic formulas and hypothesis-based models.
The mdl_tbl
is a data frame of model information, such as model fit,
parameter estimates, and summary statistics about a model, or a formula if it
has not yet been fit.
Usage
mdl_tbl(..., data = NULL)
model_table(..., data = NULL)
is_model_table(x)
Arguments
... |
Named or unnamed |
data |
A |
x |
A |
Details
The table itself allows for ease of organization of model information and has three additional, major components (stored as scalar attributes).
A formula matrix that describes the terms used in each model, and how they are combined.
A term table that describes the terms and their properties and/or labels.
A list of datasets used for the analyses that can help support additional diagnostic testing.
We go into further detail in the sections below.
Value
A mdl_tbl
object, which is essentially a data.frame
with
additional information on the relevant data, terms, and formulas used to
generate the models.
Data List
NA
Term Table
NA
Formula Matrix
NA