Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created January 17, 2021 08:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/c92a3a722d994f714ccea674737e75cd to your computer and use it in GitHub Desktop.
Save amankharwal/c92a3a722d994f714ccea674737e75cd to your computer and use it in GitHub Desktop.
most_books = df.groupby('authors')['title'].count().reset_index().sort_values('title', ascending=False).head(10).set_index('authors')
plt.figure(figsize=(15,10))
ax = sns.barplot(most_books['title'], most_books.index, palette='inferno')
ax.set_title("Top 10 authors with most books")
ax.set_xlabel("Total number of books")
totals = []
for i in ax.patches:
totals.append(i.get_width())
total = sum(totals)
for i in ax.patches:
ax.text(i.get_width()+.2, i.get_y()+.2,str(round(i.get_width())), fontsize=15,color='black')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment