how to remove nan values from age column in pandas code example
Example 1: how to delete nan values in python
x = x[~numpy.isnan(x)]
Example 2: remove rows or columns with NaN value
df.dropna() #drop all rows that have any NaN values
df.dropna(how='all')