Conditional Logic
General Info
Useful Snippets

10.0.6 Where Column is Not Null

Example:

# Where Column is NOT null
DF_Filtered = DF[( DF['has_nulls'].notnull() )]