Skip to content

Instantly share code, notes, and snippets.

@MLWhiz
Created April 19, 2019 15:35
Show Gist options
  • Save MLWhiz/4bd38266bb90e51b1503f66a344fd41a to your computer and use it in GitHub Desktop.
Save MLWhiz/4bd38266bb90e51b1503f66a344fd41a to your computer and use it in GitHub Desktop.
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