Solved – How to apply pairwise deletion for missing values

correlationfeature selectionmissing data

This method is always explained with listwise deletion which is very easy to understand. But I can't understand pairwise. Google didn't help as everywhere there is only definiton of it.

Please explain this by taking any toy example.

Best Answer

Listwise deletion deletes cases when any variable is missing.

Pairwise deletion only deletes cases when one of the variables in the particular model you are evaluating is missing.

One way to compare is with a correlation matrix of a set of variables that have different missing patterns. With listwise deletion, N will be the same for every correlation - it will be the number of complete cases. With pairwise deletion, N will vary. It will be the number of cases where both variables in the correlation are present (but other variables may be missing).