Skip to content
Advertisement

dropna() got an unexpected keyword argument ‘thresh’

I have a list of column names & want to drop the rows that have more than 1 NaN values but this error occurs: dropna() got an unexpected keyword argument 'thresh'.
My pandas is updated, the version is 1.1.5
Previously I’ve done a little data cleaning, think it caused my df rows to become str, but I converted them to np.nan

My Whole Code:

JavaScript

Advertisement

Answer

When you use dropna(thresh=1, axis=0) it will drop rows that have just nan values, for your purpose, you can do the following:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement