drop column from df code example
Example 1: python drop axis
df.drop(['colonna da togliere'], axis=1)
Example 2: drop column dataframe
df.drop(columns=['Unnamed: 0'])
Example 3: dataframe delete row
df.drop(df.index[2])
Example 4: drop a column in pandas
df = df.drop(df.columns[[0, 1, 3]], axis=1) # df.columns is zero-based pd.Index