get all non numeric columns pandas

34

dfnew = df.select_dtypes(include=np.number)
dfnew = df._get_numeric_data()

Comments

Submit
0 Comments