Created
July 13, 2020 16:31
-
-
Save sebastianmurillonader/690a954c11eeeaf0eb535d9a8691fdcb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Group data by one variable. | |
df_group = df.groupby('Proceso').agg( | |
UX = ('UX', sum), | |
Impacto = ('Impacto', sum), | |
Uso = ('Uso', sum), | |
Implementación = ('Implementación', sum), | |
Prioridad = ('Prioridad', sum) | |
).reset_index() | |
df_group.head(20) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment