How to use missingno - 10 common examples

To help you get started, we’ve selected a few missingno examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_width_ratios_matrix(self):
        msno.matrix(self.simple_df, width_ratios=(30, 1))
        return plt.gcf()
github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_no_sparkline_matrix(self):
        msno.matrix(self.simple_df, sparkline=False)
        return plt.gcf()
github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_simple_matrix(self):
        msno.matrix(self.simple_df)
        return plt.gcf()
github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_freq_matrix(self):
        msno.matrix(self.freq_df, freq='BQ')
        return plt.gcf()
github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_fontsize_matrix(self):
        msno.matrix(self.simple_df, fontsize=8)
        return plt.gcf()
github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_large_matrix(self):
        msno.matrix(self.large_df)
        return plt.gcf()
github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_simple_heatmap(self):
        msno.heatmap(self.simple_df)
        return plt.gcf()
github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_alternative_colormap_heatmap(self):
        msno.heatmap(self.simple_df, cmap='viridis')
        return plt.gcf()
github ResidentMario / missingno / tests / viz_tests.py View on Github external
def test_unlabelled_heatmap(self):
        msno.heatmap(self.simple_df, labels=False)
        return plt.gcf()
github ResidentMario / missingno / tests / util_tests.py View on Github external
def test_percentile_cutoff_top_p(self):
        expected = self.df.loc[:, ['B', 'C']]
        result = msno.nullity_filter(self.df, p=0.6, filter='top')
        assert result.equals(expected)

missingno

Missing data visualization module for Python.

MIT
Latest version published 1 year ago

Package Health Score

62 / 100
Full package analysis