Answers for "replace nan with other dataframe condition"

2

python pandas replace nan with null

df.fillna('', inplace=True)
Posted by: Guest on April-16-2020
0

replace nan in pandas column with mode and printing it

def exercise4(df):
    df1 = df.select_dtypes(np.number)
    df2 = df.select_dtypes(exclude = 'float')
    mode = df2.mode()
    df3 = df1.fillna(df.mean())
    df4 = df2.fillna(mode.iloc[0,:])
    new_df = [df3,df4]
    df5 = pd.concat(new_df,axis=1)
    new_cols = list(df.columns)
    df6 = df5[new_cols]
    return df6
Posted by: Guest on July-23-2020

Code answers related to "replace nan with other dataframe condition"

Python Answers by Framework

Browse Popular Code Answers by Language