Answers for "pandas check for inf"

1

python check if is pandas dataframe

import pandas as pd
isinstance(df, pd.DataFrame)
Posted by: Guest on November-12-2020
1

check if dataframe contains infinity

df.replace([np.inf, -np.inf], np.nan).dropna(subset=["col1", "col2"], how="all")
Posted by: Guest on November-03-2020
3

pandas dataframe replace inf

df.replace([np.inf, -np.inf], np.nan)
Posted by: Guest on June-02-2020
1

check if value is in series pandas

In [21]: s.unique()
Out[21]: array(['a', 'b', 'c'], dtype=object)

In [22]: 'a' in s.unique()
Out[22]: True
Posted by: Guest on May-12-2020

Python Answers by Framework

Browse Popular Code Answers by Language