I have a dataframe called "tips" in which I am trying to drop two columns, tip and higher_than_15pct_true, as follows:
X = tips.drop('tip','higher_than_15pct_True', axis = 1)
This results in the following error:
TypeError: drop() got multiple values for argument 'axis'
How can I fix this?