Skip to content

Instantly share code, notes, and snippets.

@StephenFordham
Last active April 21, 2019 12:18
Show Gist options
  • Save StephenFordham/b0bdad494a8e3218013eb541dbdcd9f1 to your computer and use it in GitHub Desktop.
Save StephenFordham/b0bdad494a8e3218013eb541dbdcd9f1 to your computer and use it in GitHub Desktop.
new_columns
Table['Goals/game'] = round((Table.F / Table.P), 1)
Table['Goals conceded/game'] = round((Table['A'] / Table['P']), 1)
Table.sort_values(['Goals/game', 'Goal Ratio']).head(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment