Instructions for missings vizualisations
missings_specification.Rd
Instructions for missings vizualisations
Arguments
- vline
(
logical
) Should the vertical line be shown? Defaults toFALSE
.- hline
(
logical
) Should the horizontal line be shown? Defaults toFALSE
.- values
(
NULL
) or single value or a named vector. Specifies the value(-s) that stand for the missing values. IfNULL
, then no missing value handling is carried out. If single value, then it is assumed that this value is used for flagging missing values across all continuous variables. If named vector, then the names are used to refer to continuous variables and the values for flagging missing values in that variable.- drop_from_plot
(
logical
) Should the missing values be dropped from plot? Defaults toFALSE
.
Examples
if (FALSE) {
g_ice(
sculpture,
missings_spec = missings_specification(
vline = TRUE, # show vertical line
values = -1 # NAs in all continuous variables displayed as -1
)
)
}