Posts by bitmover • 1 point
1 post
-
0
votes1
answer89
viewsA: How to delete aggregated columns in a Dataframe Pandas obtained through the 'pivot_table'?
I believe you are behind the dataframe.drop function(). df_projects7=df_projects7.drop(['Percent_executado','Atualizado'], axis=1) Let me know if it works.