Last active
September 10, 2018 22:58
-
-
Save StrikingLoo/6f3b245959c6105d51913c322d101dd8 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
| total_rows = df.shape[0] | |
| unique_athletes = len(df.Name.unique()) | |
| medal_winners = len(df[df.Medal.fillna('None')!='None'].Name.unique()) | |
| "{0} {1} {2}".format(total_rows, unique_athletes, medal_winners) | |
| #'271116 134732 28202' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment