Created
October 26, 2021 14:51
-
-
Save michelkana/a16b524bf08b780d9e505298c5b030aa 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
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