Déposez une colonne à partir de DataFrame
#To delete the column without having to reassign df
df.drop('column_name', axis=1, inplace=True)
Desert Trap
#To delete the column without having to reassign df
df.drop('column_name', axis=1, inplace=True)
note: df is your dataframe
df = df.drop('coloum_name',axis=1)
df = df.drop(['B', 'C'], axis=1)
df.drop('col_name',1) #1 drop column / 0 drop row
#to drop by column number instead of by column label, try this to delete, e.g. the 1st, 2nd and 4th columns
df = df.drop(df.columns[[0, 1, 3]], axis=1) # df.columns is zero-based pd.Index
DataFrame.drop(self, labels=None, axis=0, index=None, columns=None, level=None, inplace=False, errors='raise')[source]