Created
September 10, 2018 23:06
-
-
Save StrikingLoo/a7a6889cbbbdc22b1c9b0532597bf0d1 to your computer and use it in GitHub Desktop.
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
| # See Medal distribution. | |
| print(df[df.Medal.fillna('None')!='None'].Medal.value_counts()) | |
| # How many total medals. | |
| df[df.Medal.fillna('None')!='None'].shape[0] | |
| ''' | |
| Gold 13372 | |
| Bronze 13295 | |
| Silver 13116 | |
| Total: 39783 | |
| ''' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment