get the rows where a coliun is missing code example
Example 1: how to find rows with missing data in pandas
null_data = df[df.isnull().any(axis=1)]
Example 2: fetch row where column is missing pandas
df[df['column_name'].isnull()]
null_data = df[df.isnull().any(axis=1)]
df[df['column_name'].isnull()]