seqmissIplot {seqimpute} | R Documentation |
Plot all the patterns of missing data.
Description
This function plots all patterns of missing data within sequences, based on the seqIplot function.
Usage
seqmissIplot(data, var = NULL, with.complete = TRUE, void.miss = TRUE, ...)
Arguments
data |
Either a data frame containing sequences of a categorical
variable, where missing data are coded as |
var |
A vector specifying the columns of the dataset
that contain the trajectories. Default is |
with.complete |
Logical, if |
void.miss |
Logical, if |
... |
Additional parameters passed to the seqIplot function. |
Details
This function uses seqIplot to visualize all patterns of missing data within sequences. For further customization options, refer to the seqIplot documentation.
Author(s)
Kevin Emery
Examples
# Plot all the patterns of missing data
seqmissIplot(gameadd, var = 1:4)
# Plot all the patterns of missing data discarding
# complete trajectories
seqmissIplot(gameadd, var = 1:4, with.missing = FALSE)