Answers for "how to remove rows from a dataframe python"

4

drop a column in pandas

note: df is your dataframe

df = df.drop('coloum_name',axis=1)
Posted by: Guest on May-11-2020
0

remove a column from dataframe

del df['column_name'] #to remove a column from dataframe
Posted by: Guest on July-20-2020

Code answers related to "how to remove rows from a dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language