Skip to content

Instantly share code, notes, and snippets.

@prateekjoshi565
Created April 21, 2019 12:08
Show Gist options
  • Save prateekjoshi565/639d2c53109b5f592056048b7d74f49a to your computer and use it in GitHub Desktop.
Save prateekjoshi565/639d2c53109b5f592056048b7d74f49a to your computer and use it in GitHub Desktop.
genre_labels_visual
g = all_genres_df.nlargest(columns="Count", n = 50)
plt.figure(figsize=(12,15))
ax = sns.barplot(data=g, x= "Count", y = "Genre")
ax.set(ylabel = 'Count')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment