Last active
April 21, 2019 12:18
-
-
Save StephenFordham/b0bdad494a8e3218013eb541dbdcd9f1 to your computer and use it in GitHub Desktop.
new_columns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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