why axis = 1 is different in pandas drop code example
Example 1: python drop axis
df.drop(['colonna da togliere'], axis=1)
Example 2: drop the first column pandas
df.set_index['column'] # column refers to column to be set as index
df.drop(['colonna da togliere'], axis=1)
df.set_index['column'] # column refers to column to be set as index