Answers for "delete the index column of a dataframe"

2

python pandas drop column by index

df.drop(a_dataframe.columns[0], axis=1, inplace=True)
Posted by: Guest on May-09-2021
2

pandas drop columns by index

cols = [1,2,4,5,12]
df.drop(df.columns[cols],axis=1,inplace=True)
Posted by: Guest on November-10-2020

Code answers related to "delete the index column of a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language