Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

remove all rows where one ccolumns egale to nan

#remove in dataframe but no in the file
df = df[df['column'].notna()]

#remove in dataframe and in the file
df.dropna(subset=['EPS'], how='all', inplace=True)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #rows #ccolumns #egale #nan
ADD COMMENT
Topic
Name
7+1 =