- object
It can a data frame
similar in form to the output of
lavaan::parameterEstimates(), or a
lavaan object (e.g., the output of
lavaan::sem()). If it is a lavaan
object, then
lavaan::parameterEstimates() will
be called to generate the parameter
estimates table.
- ...
If object is a lavaan
object, then these are the optional
arguments to be passed to
lavaan::parameterEstimates() when
it is called.
- fit_object
(Optional). The
lavaan object for getting
additional information, if they are
not available in object, and added
as attributes to object. It
essentially does what
lavaan::parameterEstimates() does
when setting output to "text".
- se_also_to_na
Columns for
which cells will be set to NA if
the standard error of a parameter is
zero, which is assumed to mean that
this parameter is fixed. By default,
these columns are included and no
need to specify them for this
argument: "z", "pvalue", "t",
"df", "ci.lower", and
"ci.upper". To exclude one of these
columns from se_als_to_na, add it
to se_not_to_na.
- se_not_to_na
Columns for which
cells will not be set to NA even if
the standard error of a parameter is
zero. Column names that appear here
override se_also_to_na.
Therefore, if "z", "pvalue",
"t", "df", "ci.lower", and
"ci.upper" are included in this
argument, they will also not be set
to NA.
- drop_cols
The names of columns
to be dropped from the printout. It
can be the names after being renamed
by rename_cols, or the original
names before being renamed (i.e., the
names in object), provided that the
names in object are stored in the
attribute "original_name" of each
column, which is done by default by
parameterEstimates_table_list().
- rename_cols
If any columns are
to be renamed, this is named
character vector, with the names
being the original names and the
values being the new names. For
example, c("pvalue" = "P(|>z|)")
renames the column "pvalue" to
"P(|z|)". It is recommended to
quote the names too because they may
not be standard names.
- est_funs
If supplied, it
should be a list of functions to be
applied to each parameter estimates
table, applied in the same order they
appear in the list. It can be used
create new columns or modify existing
columns. Usually, this should be done
before calling
parameterEstimates_table_list() but
provided as an option.
- header_funs
If supplied, it
should be a list of functions to be
applied to object to generate the
header sections. See Details on the
expected format of the output of
these functions.
- footer_funs
If supplied, it
should be a list of functions to be
applied to object to generate the
footer sections. See Details on the
expected format of the output of
these functions.
- est_funs_args
If supplied, it
must be a "list of list(s)". The length
of this list must be equal to the
number of functions in est_funs.
Each sub-list is the list of arguments
to be used when calling a function in
est_funs. It must be an empty
list() if no additional arguments
are to be used when calling a function
in est_funs.
- header_funs_args
If supplied, it
must be a "list of list(s)". The length
of this list must be equal to the
number of functions in header_funs.
Each sub-list is the list of arguments
to be used when calling a function in
header_funs. It must be an empty
list() if no additional arguments
are to be used when calling a function
in header_funs.
- footer_funs_args
If supplied, it
must be a "list of list(s)". The length
of this list must be equal to the
number of functions in footer_funs.
Each sub-list is the list of arguments
to be used when calling a function in
footer_funs. It must be an empty
list() if no additional arguments
are to be used when calling a function
in footer_funs.
- x
The object to be printed.
Should be the output of
parameterEstimates_table_list().
- nd
The number of decimal
places to be displayed for numeric
cells.
- by_group
If TRUE, the
default, tables will be grouped by
groups first, and then by grouped by
sections (e.g., Latent Variables,
Regressions, etc.). If FALSE,
then the tables will be grouped by
sections first, and then grouped by
groups. No effect if the number of
groups is equal to one.
- na_str
The string to be used
for cells with NA. Default is
" ", a white space.