Answers for "pd dataframe drop first column"

2

pandas drop columns by index

cols = [1,2,4,5,12]
df.drop(df.columns[cols],axis=1,inplace=True)
Posted by: Guest on November-10-2020
1

removing features pandas

df.drop([‘feature_1’,’feature_2’], inplace = True, axis = 1)
Posted by: Guest on May-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language