Skip to content

Instantly share code, notes, and snippets.

@kailukowiak
Created February 18, 2020 16:00
Show Gist options
  • Save kailukowiak/a75f4a6b8fba6272a5822a1fc1c2bb1e to your computer and use it in GitHub Desktop.
Save kailukowiak/a75f4a6b8fba6272a5822a1fc1c2bb1e to your computer and use it in GitHub Desktop.
# Replaces spaces and caps.
df.columns = df.columns.str.strip().str.lower().str.replace(' ', '_').str.replace('(', '').str.replace(')', '')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment