Answers for "drop a col from a dataframe"

6

python drop axis

df.drop(['colonna da togliere'], axis=1)
Posted by: Guest on April-06-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 "drop a col from a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language