I cannot find where I can pass logical operations anything that will ID empty "cells" in a dataframe.
example when iterating by rows
for index, row in df.iterrows():
if row['columnName'] == 'NaN':
I have tried with several variations on null identifiers but cannot find what pandas has in empty entries that logic functions can identify.