--- id: missingno version: "0.5.2" license: MIT License license_treatment: permissive maintenance: dormant --- # missingno — Missing data visualization module for Python. License: permissive · Maintenance: dormant · Downloads: 537.0K/mo ## What it is and what it does missingno is a lightweight visualization toolkit for understanding missing data patterns. It provides four complementary views: a matrix showing row-by-row nullity patterns with sparklines, a bar chart of nullity by column, a correlation heatmap measuring how the presence of one variable affects another, and a dendrogram using hierarchical clustering to reveal deeper completion relationships. The library is built on numpy, matplotlib, scipy, and seaborn, integrating naturally into standard data-science workflows. You use it to quickly spot data quality issues—which columns are sparse, whether missingness is random or patterned, and which variables tend to be missing together. It's most useful in exploratory data analysis when you need a visual summary before deciding on imputation or filtering strategies. The library is in maintenance mode, meaning it receives bugfixes but no major new features. Use it for: - Inspect a newly loaded dataset to identify which columns have missing values and spot patterns before preprocessing - Diagnose whether missingness is random or correlated across variables - Communicate data quality to stakeholders using visual summaries instead of raw null counts - Detect data entry errors by finding unexpected correlations between variables - Profile time-series data by specifying periodicity to see how completeness varies over time ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Visualizes missing data patterns in DataFrames through matrix, bar, heatmap, and dendrogram plots to quickly assess data completeness and nullity correlations. Yes, if you work regularly with data exploration and need quick visual assessment of missing data. Low install friction, permissive MIT license, no known vulnerabilities, and a stable API make it a safe choice. Dormant maintenance is not a blocker for a mature visualization tool, but don't expect new features or rapid responses to edge cases. Worth keeping in your toolkit for exploratory data analysis. ## Install pip install missingno uv add missingno poetry add missingno ## Installing missingno Before you install: Low friction install with four common data-science dependencies (numpy, matplotlib, scipy, seaborn). Dormant maintenance status since February 2023, but no active issues reported and the library is explicitly in maintenance mode accepting bugfixes. License in practice: MIT License permits commercial and private use with minimal restrictions, making it safe to adopt in most projects without licensing concerns. Quickstart: pip install missingno import missingno as msno msno.matrix(df) msno.bar(df) msno.heatmap(df) msno.dendrogram(df) Verify before relying: - Whether the library actively handles modern API changes in its dependencies beyond bugfixes - Performance characteristics on very large datasets with millions of rows - Current state of maintenance beyond the stated bugfix policy ## Package facts - License: MIT License (permissive) - Python support: unspecified - Install friction: low - Maintenance: dormant - Downloads: 537.0K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags missing data visualization, data completeness assessment, nullity patterns, data quality exploration, missing values heatmap, data profiling, dataset inspection, data-exploration, eda, visualization [View on SkillFed](https://skillfed.io/packages/missingno) · [View on PyPI](https://pypi.org/project/missingno/)