- change
The output from
est_change()
, est_change_raw()
,
est_change_approx()
, or
est_change_raw_approx()
.
- parameters
If it is
a character vector, it
specifies the selected parameters.
Each parameter is named as in
lavaan
syntax, e.g., x ~ y
or x ~~ y
, as appeared in the columns
lhs
, op
, and rhs
in the output
of lavaan::parameterEstimates()
.
Supports specifying an operator to
select all parameters with this
operators: ~
, ~~
, =~
, and ~1
.
This vector can contain both
parameter names and operators.
If it is a numeric vector, it
specifies the columns to be used.
If omitted or NULL
,
the default, changes on all
parameters in change
. will be used.
- cutoff_change
Cases with
absolute changes larger than this
value will be labeled. Default is
NULL
. If NULL
, no cutoff line
will be drawn.
- largest_change
The number of
cases with the largest absolute
changes to be labelled. Default is
If not an integer, it will be
rounded to the nearest integer.
- title
If TRUE
, the default,
a default title will be added to
the plot. If it is a string, it will
be used as the title. If FALSE
,
no title will be added to the plot.
- point_aes
A named list of
arguments to be passed to
ggplot2::geom_point()
to modify how
to draw the points. Default is
list()
and internal default
settings will be used.
- vline_aes
A named list of
arguments to be passed to
ggplot2::geom_segment()
to modify how
to draw the line for each case
in the index plot by
est_change_plot()
. Default is
list()
and internal default
settings will be used.
- hline_aes
A named list of
arguments to be passed to
ggplot2::geom_hline()
to modify how
to draw the horizontal line for zero
case influence. Default is list()
and internal default settings will be
used.
- cutoff_line_aes
A named list
of arguments to be passed to
ggplot2::geom_hline()
in
est_change_plot()
or
ggplot2::geom_vline()
in
est_change_gcd_plot()
to modify how
to draw the line for user cutoff
value (cutoff_change
or
cutoff_gcd
). Default is list()
and internal default settings will be
used.
- case_label_aes
A named list of
arguments to be passed to
ggrepel::geom_label_repel()
to
modify how to draw the labels for
cases marked (based on
cutoff_change
, cutoff_gcd
,
largest_change
, or largest_gcd
).
Default is list()
and internal
default settings will be used.
- wrap_aes
A named list of
arguments to be passed to
ggplot2::facet_wrap()
to modify how
the plots are organized. Default is
list()
and internal default
settings will be used.
- cutoff_gcd
Cases with
generalized Cook's distance or
approximate generalized Cook's
distance larger than this value will
be labeled. Default is NULL
. If
NULL
, no cutoff line will be drawn.
- largest_gcd
The number of
cases with the largest generalized
Cook's distance or approximate
generalized Cook's distance to be
labelled. Default is 1. If not an
integer, it will be rounded to the
nearest integer.