What’s Missing with {naniar}

R
graphics
Author

Ted Laderas

Published

September 22, 2024

Learn about patterns of missing values in your data with the {naniar} package.

Our Dataset

Why Should We Care?

As a data scientist, you need to be aware of missing values and how they impact your analysis. There are methods of dealing with missing values, such as imputation, that are highly dependent on the kinds of missingness in your data. Some modeling methods, like zero-inflated models, have different assumptions for using them properly.

Visualizing Missingness: vis_miss()

My favorite way to look for these patterns is a package called {naniar} written by my friend Nick Tierney. naniar visualizes rows of data as lines in a rectangle. Columns are represented by line sections.

Let’s take a look at the missing values in the penguins data.

What I like about this visual representation is that it lets you see the association of missing values as holes in the visualization, as well as percent missing values in each variable. In this example, you can see that some penguins are missing information such as sex.

In this example, reading the combinations from left to right, we can see:

  • 9 penguins had missing values for sex
  • 2 penguins had missing values in bill_length, bill_depth, flipper_length, body_mass, and sex.

Visualizing the combinations of missing values helps us discover patterns of association in missingness that we don’t expect.

Continuous Values and Missingness: geom_miss_point()

Most of these visualizations use a shadow matrix representation of missing values. This shadow matrix lets you do clever things such as visualize two continuous variables on a plot but include those missing values to assess whether those missing values are MNAR, MAR, or MCAR.

When you are plotting two continuous values, you need to be curious about whether there are biases in the missingness. geom_miss_point() gives us a way to visualize the missing values when we plot.

In this plot, the missing values are represented by red points that are below the zero line for both axes (they are jittered so they don’t all occupy the same line). Specifically, the points on the left side have values for Solar.R but are missing values for Ozone. In this case, the points are distributed across the entire range of Solar.R. Note that this isn’t the case for missing values of Solar.R, which are represented in the lower right of the plot. These missing values are not distributed evenly across Ozone, showing a bias towards lower values of Ozone.

ful when you facet on a categorical variable, to look for conditioned randomness, MAR/MNAR.

Here we can see a possible bias in missing values by the month (compare month=6 to month=9).

In Conclusion: We Miss You, Missing Values

I’ve barely scratched the surface of all you can do with {naniar}. Nick has come up with all sorts of visualizations to address issues with missing values. I especially like the visualizations he’s added around imputations, which is one way to address missing values. Check his package out!

Citation

BibTeX citation:
@online{laderas2024,
  author = {Laderas, Ted},
  title = {What’s {Missing} with `\{Naniar\}`},
  date = {2024-09-22},
  langid = {en}
}
For attribution, please cite this work as:
Laderas, Ted. 2024. “What’s Missing with `{Naniar}`.” September 22, 2024.