Skip to content

Instantly share code, notes, and snippets.

@michelkana
Created October 26, 2021 14:51
Show Gist options
  • Save michelkana/a16b524bf08b780d9e505298c5b030aa to your computer and use it in GitHub Desktop.
Save michelkana/a16b524bf08b780d9e505298c5b030aa to your computer and use it in GitHub Desktop.
plt.figure(figsize=(20, 5))
plt.scatter(df['Minutes Played'] / (24*60), df['Score'])
plt.xlabel('Days Played')
plt.ylabel('Score')
plt.title('Matches Played vs. Score');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment