Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created August 9, 2021 07:52
Embed
What would you like to do?
plt.figure(figsize=(15, 10))
sns.set_theme(style="whitegrid")
plt.title("Number of Followers I Gained Every Month")
sns.barplot(x="followers_gained", y="period_end", data=data)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment