Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created August 23, 2018 14:06
Show Gist options
  • Save lmiller1990/b2d6932266a373ee26ddc1108b9f55b0 to your computer and use it in GitHub Desktop.
Save lmiller1990/b2d6932266a373ee26ddc1108b9f55b0 to your computer and use it in GitHub Desktop.
fields = ['fb', 'ft', 'fd', 'fbaron']
games = team_games(df, 'team solomid')
for f in fields:
taken = games[f].sum()
total = games[f].shape[0]
print(f + ':\t', taken, "/" , total, taken/total)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment