pandas drop row if collumn value empty python 2021 code example
Example 1: pandas remove rows with null in column
df = df[df['EPS'].notna()]
Example 2: drop row pandas column value not a number
In [215]:
df[df['entrytype'].apply(lambda x: str(x).isdigit())]
Out[215]:
entrytype
0 0
1 1
4 2