This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
#Import needed libraries
import pandas as pd
import missingno as msno
# Load the dataset
df = pd.read_csv("Documents/kamyr-digester.csv")
# Visualize missing values
msno.matrix(df)
view raw
missingno_ex.py
hosted with ❤ by
GitHub