Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

drop rows with null date in pandas

# It will erase every row (axis=0) that has "any" Null value in it.
df = df.dropna(how='any',axis=0) 
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #drop #rows #null #date #pandas
ADD COMMENT
Topic
Name
2+1 =