In the following csv I want to remove all rows that are empty with respect to column 'Age' only (i.e. row 4 & 5 to be removed of entire file)
I tried
df['Age'].dropna(how ='any')
But this isn't the solution.
In the following csv I want to remove all rows that are empty with respect to column 'Age' only (i.e. row 4 & 5 to be removed of entire file)
I tried
df['Age'].dropna(how ='any')
But this isn't the solution.