Answers for "pandas drop column axis"

8

drop columns pandas

df.drop(columns=['B', 'C'])
Posted by: Guest on March-23-2020
0

remove columns from dataframe

df.drop('col_name',1) #1 drop column / 0 drop row
Posted by: Guest on August-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language