.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "checks_gallery/tabular/data_integrity/plot_mixed_nulls.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_checks_gallery_tabular_data_integrity_plot_mixed_nulls.py: .. _plot_tabular_mixed_nulls: Mixed Nulls *********** .. GENERATED FROM PYTHON SOURCE LINES 10-15 .. code-block:: default import pandas as pd from deepchecks.tabular.checks import MixedNulls .. GENERATED FROM PYTHON SOURCE LINES 16-21 .. code-block:: default data = {'col1': ['sog', '1', 'cat', None, None]} dataframe = pd.DataFrame(data=data) MixedNulls().run(dataframe) .. raw:: html
Mixed Nulls


.. GENERATED FROM PYTHON SOURCE LINES 22-26 .. code-block:: default data = {'col1': ['nan', None, 'null', 'Nan', '1', 'cat'], 'col2':['', '', 'None', 'a', 'b', 'c'], 'col3': [1,2,3,4,5,6]} dataframe = pd.DataFrame(data=data) MixedNulls().run(dataframe) .. raw:: html
Mixed Nulls


.. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.170 seconds) .. _sphx_glr_download_checks_gallery_tabular_data_integrity_plot_mixed_nulls.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_mixed_nulls.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_mixed_nulls.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_