statsmodels.imputation.mice.MICEData.plot_missing_pattern

method

MICEData.plot_missing_pattern(ax=None, row_order='pattern', column_order='pattern', hide_complete_rows=False, hide_complete_columns=False, color_row_patterns=True)[source]

Generate an image showing the missing data pattern.

Parameters
axmatplotlib axes

Axes on which to draw the plot.

row_orderstring

The method for ordering the rows. Must be one of ‘pattern’, ‘proportion’, or ‘raw’.

column_orderstring

The method for ordering the columns. Must be one of ‘pattern’, ‘proportion’, or ‘raw’.

hide_complete_rowsboolean

If True, rows with no missing values are not drawn.

hide_complete_columnsboolean

If True, columns with no missing values are not drawn.

color_row_patternsboolean

If True, color the unique row patterns, otherwise use grey and white as colors.

Returns
A figure containing a plot of the missing data pattern.