doesn drop nan values pandas code example
Example 1: how to delete nan values in python
x = x[~numpy.isnan(x)]
Example 2: drop columns with nan pandas
>>> df.dropna(axis='columns')
name
0 Alfred
1 Batman
2 Catwoman
x = x[~numpy.isnan(x)]
>>> df.dropna(axis='columns')
name
0 Alfred
1 Batman
2 Catwoman