Using either the help function or online documentation, find the default for axis in the Pandas drop function (pandas.DataFrame.drop). Enter your answer below. code example
Example 1: python drop axis
df.drop(['colonna da togliere'], axis=1)
Example 2: removing features pandas
df.drop([‘feature_1’,’feature_2’], inplace = True, axis = 1)