take out nan python code example
Example 1: how to delete nan values in python
x = x[~numpy.isnan(x)]
Example 2: remove nans and infs python
x = x[numpy.logical_not(numpy.isnan(x))]
Example 3: remove nans and infs python
df.replace([np.inf, -np.inf], np.nan).dropna(axis=1)