Created
April 19, 2019 15:35
-
-
Save MLWhiz/4bd38266bb90e51b1503f66a344fd41a 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
g = sns.swarmplot(y = "Club", | |
x = 'Wage', | |
data = filtered_player_df, | |
# Decrease the size of the points to avoid crowding | |
size = 7) | |
# remove the top and right line in graph | |
sns.despine() | |
g.figure.set_size_inches(14,10) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment