I know to delete a column I can use df = df.drop('column_name', 1)
, but how would I remove a column just by indexing which column it is? As in without inserting the name?
Sorry if this question has been repeated I can't seem to find it
I know to delete a column I can use df = df.drop('column_name', 1)
, but how would I remove a column just by indexing which column it is? As in without inserting the name?
Sorry if this question has been repeated I can't seem to find it