Skip to content

Instantly share code, notes, and snippets.

@gm3dmo
Created December 13, 2017 15:00
Show Gist options
  • Select an option

  • Save gm3dmo/4335c81546f92a1b840de3f30efadb37 to your computer and use it in GitHub Desktop.

Select an option

Save gm3dmo/4335c81546f92a1b840de3f30efadb37 to your computer and use it in GitHub Desktop.
import os
import sys
import csv
import pandas as pd
def main():
f = sys.argv[1]
df = pd.read_csv(f)
grouped = df.groupby('function')
print(grouped.describe())
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment