determine the rows that dont have values in a specific column pandas dataframe code example
Example: only keep rows of a dataframe based on a column value
df.loc[df['column_name'] == some_value]
df.loc[df['column_name'] == some_value]