Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sebastianmurillonader/89497652670feaadd3d789e58ea15914 to your computer and use it in GitHub Desktop.
Save sebastianmurillonader/89497652670feaadd3d789e58ea15914 to your computer and use it in GitHub Desktop.
#Only keep columns needed.
df = df[['proceso', 'prioridad#', 'UX#', 'impacto#', 'uso#', 'implementación#']]
#Rename columns for presentation purposes.
df.columns = ['Proceso', 'Prioridad', 'UX', 'Impacto', 'Uso', 'Implementación']
df.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment