plot.mids: Plot the trace lines of the MICE algorithm
Description
Trace line plots portray the value of an estimate
against the iteration number. The estimate can be anything that you can calculate, but
typically are chosen as parameter of scientific interest. The plot method for
a mids object plots the mean and standard deviation of the imputed (not observed)
values against the iteration number for each of the $m$ replications. By default,
the function plot the development of the mean and standard deviation for each incomplete
variable. On convergence, the streams should intermingle and be free of any trend.
Usage
# S3 method for mids
plot(
x,
y = NULL,
theme = mice.theme(),
layout = c(2, 3),
type = "l",
col = 1:10,
lty = 1,
...
)
Value
An object of class "trellis".
Arguments
x
An object of class mids
y
A formula that specifies which variables, stream and iterations are plotted.
If omitted, all streams, variables and iterations are plotted.
theme
The trellis theme to applied to the graphs. The default is mice.theme().
layout
A vector of length 2 given the number of columns and rows in the plot.
The default is c(2, 3).