A 16-variable dataset with 336 cases.
data_sem16
data_sem16
A data frame with 336 rows and 16 variables:
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Indicator. Numeric.
Group with two values, "alpha" and "gamma". Character.
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 + x4 f2 =~ x5 + x6 + x7 + x8 f3 =~ x9 + x10 + x11 + x12 f4 =~ x13 + x14 + x15 + x16 f3 ~ f2 + f1 f4 ~ f3 " fit <- sem(mod, data_sem16) summary(fit)
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 + x4 f2 =~ x5 + x6 + x7 + x8 f3 =~ x9 + x10 + x11 + x12 f4 =~ x13 + x14 + x15 + x16 f3 ~ f2 + f1 f4 ~ f3 " fit <- sem(mod, data_sem16) summary(fit)
It fixes a designated free parameter in a lavaan object to zero and refit the model.
fix_to_zero(fit, par_id, store_fit = FALSE, se_keep_bootstrap = FALSE)
fix_to_zero(fit, par_id, store_fit = FALSE, se_keep_bootstrap = FALSE)
fit |
A |
par_id |
An integer. The row
number of the free parameter in the
parameter table of |
store_fit |
Logical. If |
se_keep_bootstrap |
Logical.
If |
It modifies the parameter
table of a lavaan
-class object and
then fits the model again.
Users should usually call
lrtp()
directly instead of calling
this function. It is exported for
developers.
A fix_to_zero
-class object, which
is a list with these elements:
fit0
is the lavaan
output of the
refitted object. NA
if the fit
failed for some reasons. To be
considered an acceptable solution,
the optimization must converge,
the solution passes lavaan
's
post check,
the variance-covariance matrix of
estimates successfully computed,
and the increase in the model
degree of freedom equal to the
expected change.
fit1
is the original lavaan
output if store_fit
is TRUE
. It
is NULL
if store_fit
is FALSE
,
the default.
par_id
is the row number of the
designated free parameter in the
parameter table.
call
is the original call to this
function.
ptable0
is the parameter table
with the designated parameter fixed
to zero. It can be used for diagnostic
purpose if the fit failed.
fit0_error
is the error
message in refitting the model
(ptable0
), if
any. If
no error, it is NA
.
vcov_ok
is TRUE
if the
variance-covariance matrix of the
estimates
can be computed without error nor
warning. FALSE
otherwise.
vcov_msg
is the message generated
when using lavaan::lavInspect()
to
get the variance-covariance matrix
of the parameter estimates of the
refitted model. If TRUE
, then no
error nor warning. Can be used for
diagnostic purposes.
converged
: Whether refitting
the modified model (ptable0
)
converged.
post_check_passed
: Whether the
solution of the modified model
(ptable0
) passed
lavaan
's post check.
post_check_msg
: If the solution
failed lavaan
's post check,
it stores the warning message.
If the solution passes the check,
it is NA
.
fit_not_ok
: If the fit failed
for some reasons, the fit object,
if available, is stored in this
element rather than in fit0
. such
that the fit object can be retrieved
for diagnostic purposed if necessary.
df_diff_one
: Whether the
difference in model degrees of
freedom between the modified model
and the original model is one. If
a variance is fitted to zero, related
covariance(s) is/are also fitted to
zero and so the difference in
model degrees of freedom can be
legitimately greater than one.
se_force_standard
: Whether
se
was forced to be "standard"
even if it is "bootstrap"
in
fit
. If FALSE
, then either
se
is not "bootstrap"
in
fit
or it was not changed in
fitting the restricted model.
Shu Fai Cheung https://orcid.org/0000-0002-9871-9448
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 " fit <- sem(mod, data_sem16) # Fix the factor covariance to zero out <- fix_to_zero(fit, par_id = 15) summary(out$fit0)
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 " fit <- sem(mod, data_sem16) # Fix the factor covariance to zero out <- fix_to_zero(fit, par_id = 15) summary(out$fit0)
Fix the designated free parameter to zero and do a likelihood ratio test.
lrt( fit, par_id, store_fit = FALSE, group = NULL, se_keep_bootstrap = FALSE, LRT_method = "default", scaled.shifted = TRUE, fallback_method = "satorra.2000" )
lrt( fit, par_id, store_fit = FALSE, group = NULL, se_keep_bootstrap = FALSE, LRT_method = "default", scaled.shifted = TRUE, fallback_method = "satorra.2000" )
fit |
A |
par_id |
It can be an integer.
or a string. If it is an integer,
it should be the row
number of the free parameter in the
parameter table of |
store_fit |
Logical. If |
group |
If a model syntax
is used in |
se_keep_bootstrap |
Logical.
If |
LRT_method |
String. Passed to
the |
scaled.shifted |
Logical.
Used when the method used in
|
fallback_method |
The default
method of |
It fixes the designated
free parameter in a lavaan
output,
refit the model, and do a likelihood
ratio test comparing this model with
the original model.
The model to be fixed is generated
by fix_to_zero()
.
If the parameter to be fixed is a variance, related covariance(s), if any, will also be fixed to zero.
Users should usually call
lrtp()
directly instead of calling
this function. It is exported for
developers.
A lrt
-class object, which is a
list with the following elements:
lrt
: The output of lavaan::lavTestLRT()
.
If there is an error message or
warning, it is set to NA
.
par_id
: The row number of the
designated free parameter.
par_label
: The label of the
designated free parameter,
generated by lavaan::lav_partable_labels()
.
fit1
: The original lavaan
output, if store_fit
is TRUE
.
NA
if store_fit
is FALSE
,
the default.
fix_to_zero
: The output of
fit_to_zero()
.
call
: The call to this function.
lrt_status
: Integer. If 0, then
there is no error nor warning
in the likelihood ratio test and
lavaan::lavTestLRT()
returns a
table (data.frame
) of the test.
If -1, then something is wrong,
e.g., an error or warning occurred
when doing the likelihood ratio
test.
lrt_msg
: If something went wrong
when doing the likelihood ratio
test, this is the error or warning
message when calling
lavaan::lavTestLRT()
.
If no error nor warning,
this is NA
.
Shu Fai Cheung https://orcid.org/0000-0002-9871-9448
print.lrt()
for its
print-method, and lrtp()
for the
main function.
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 " fit <- sem(mod, data_sem16) # Fix the factor covariance to zero out <- lrt(fit, par_id = 15) out$lrt parameterEstimates(fit)[15, ] parameterEstimates(out$fix_to_zero$fit0)[15, ] # Can use model syntax for par_id out <- lrt(fit, par_id = "f1 =~ x3") out$lrt
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 " fit <- sem(mod, data_sem16) # Fix the factor covariance to zero out <- lrt(fit, par_id = 15) out$lrt parameterEstimates(fit)[15, ] parameterEstimates(out$fix_to_zero$fit0)[15, ] # Can use model syntax for par_id out <- lrt(fit, par_id = "f1 =~ x3") out$lrt
Compute the likelihood ratio
test (LRT) p-values for free
parameters in
a lavaan
output.
lrtp( fit, op = c("~", "~~"), no_variances = TRUE, no_error_variances = TRUE, no_error_covariances = TRUE, se_keep_bootstrap = FALSE, LRT_method = "default", scaled.shifted = TRUE, fallback_method = "satorra.2000", progress = TRUE, parallel = FALSE, ncores = parallel::detectCores(logical = FALSE) - 1, load_balancing = TRUE, ... )
lrtp( fit, op = c("~", "~~"), no_variances = TRUE, no_error_variances = TRUE, no_error_covariances = TRUE, se_keep_bootstrap = FALSE, LRT_method = "default", scaled.shifted = TRUE, fallback_method = "satorra.2000", progress = TRUE, parallel = FALSE, ncores = parallel::detectCores(logical = FALSE) - 1, load_balancing = TRUE, ... )
fit |
A |
op |
A character vector of
|
no_variances |
Logical. If
|
no_error_variances |
Logical,
If |
no_error_covariances |
Logical.
If |
se_keep_bootstrap |
Logical.
If |
LRT_method |
String. Passed to
the |
scaled.shifted |
Logical.
Used when the method used in
|
fallback_method |
The default
method of |
progress |
Logical. If |
parallel |
Logical. If |
ncores |
Integer. The number of
CPU cores to use if |
load_balancing |
Logical. If
|
... |
Optional arguments to be
passed to |
It finds free parameters in a
lavaan
-class object, computes the
likelihood ratio test (LRT) p-value
for each of them when fixed to zero,
and returns a parameter estimates table
with the LRT p-values
included.
By default, it only computes LRT
p-values for regression paths
and covariances, except for
error covariances. This default
can be overridden using arguments
such as op
, no_variances
,
no_error_variances
,
and no_error_covariances
.
It first identify the parameters
to be processed, and then call
lrt()
on each of them.
Please refer to
https://sfcheung.github.io/semlrtp/articles/internal_workflow.html
for the internal workflow.
An lrt
-class object, which is a
data-frame-like object similar to the
output of lavaan::parameterEstimates()
,
with a column LRTp
for the LRT
p-values, as well as other columns
such as the chi-square difference in
the test. it has a print method,
print.lrtp()
.
Shu Fai Cheung https://orcid.org/0000-0002-9871-9448
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 f3 =~ x7 + x8 + x9 f4 =~ x10 + x11 + x12 f2 ~~ f1 f3 ~ f1 + f2 f4 ~ f3 " fit <- sem(mod, data_sem16) lrtp(fit) lrtp(fit, op = "~")
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 f3 =~ x7 + x8 + x9 f4 =~ x10 + x11 + x12 f2 ~~ f1 f3 ~ f1 + f2 f4 ~ f3 " fit <- sem(mod, data_sem16) lrtp(fit) lrtp(fit, op = "~")
Print the content of
an lrt
-class object.
## S3 method for class 'lrt' print(x, digits = 3, ...)
## S3 method for class 'lrt' print(x, digits = 3, ...)
x |
An |
digits |
Integer. The number of decimal places to print. Default is 3. |
... |
Optional arguments. Not used. |
It is the print method for
the output of lrt()
.
x
is returned invisibly.
Called for its side effect.
Shu Fai Cheung https://orcid.org/0000-0002-9871-9448
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 " fit <- sem(mod, data_sem16) out <- lrt(fit, par_id = "f1 ~~ f2") out
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 " fit <- sem(mod, data_sem16) out <- lrt(fit, par_id = "f1 ~~ f2") out
Print the content of
an lrtp
-class object.
## S3 method for class 'lrtp' print( x, digits = 3, lrtp_only = TRUE, wald_stats = FALSE, output = c("text", "data.frame", "table"), ... )
## S3 method for class 'lrtp' print( x, digits = 3, lrtp_only = TRUE, wald_stats = FALSE, output = c("text", "data.frame", "table"), ... )
x |
An |
digits |
Integer. The number of decimal places to print. Default is 3. |
lrtp_only |
Logical. If |
wald_stats |
Logical. If |
output |
The format of the
printout. If |
... |
Optional arguments. Not used. |
The print method for the
output of lrtp()
.
Additional diagnostic information will be printed if one or more likelihood tests encounter some errors or warnings.
x
is returned invisibly.
Called for its side effect.
Shu Fai Cheung https://orcid.org/0000-0002-9871-9448
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 " fit <- sem(mod, data_sem16) out <- lrtp(fit) out print(out, lrtp_only = FALSE)
library(lavaan) data(data_sem16) mod <- " f1 =~ x1 + x2 + x3 f2 =~ x4 + x5 + x6 " fit <- sem(mod, data_sem16) out <- lrtp(fit) out print(out, lrtp_only = FALSE)