Posts by JcrRocha • 33 points
2 posts
-
2
votes2
answers2009
viewsQ: Javascript - How to calculate average data in an array with multiple objects and return in another array
Having an array notasAlunos, as a small example: notasAlunos = [ { matricula: "117", nome: "Joao", materia: "x1", nota: 78 }, { matricula: "117" nome: "Joao", materia: "x8", nota: 80 }, { matricula:…
-
-1
votes1
answer89
viewsQ: How to delete aggregated columns in a Dataframe Pandas obtained through the 'pivot_table'?
Hello, I managed a Dataframe in Pandas with the following command: df_projects7 = pd.pivot_table(df_projects8, index=['id_prj', 'Nome do Projeto', 'criado_em'], values=['Percent_executado',…