...

/

Logical Operators with Pandas Series

Logical Operators with Pandas Series

Let's find out how pandas series works with NaN.

We'll cover the following...

Try it yourself

Try executing the code below to see the result.

Press + to interact
import numpy as np
import pandas as pd
s = pd.Series([1, np.nan, 3])
print(s[~(s == np.nan)])

Explanation

We covered some floating-point oddities in the “Multiplying” puzzle. The NaN (or np.nan) ...