Skip to content

Instantly share code, notes, and snippets.

@kusal1990
Last active June 24, 2022 06:28
Show Gist options
  • Save kusal1990/a60504436bcd5bdd1635d0ebb23da3d3 to your computer and use it in GitHub Desktop.
Save kusal1990/a60504436bcd5bdd1635d0ebb23da3d3 to your computer and use it in GitHub Desktop.
plt.figure(figsize=(16,8))
plt.title("Number of words in a question and it's frequency for challenge set")
sns.barplot([i[0] for i in sorted_x],[i[1] for i in sorted_x])
plt.xlabel("Number of words")
plt.ylabel("Frequency")
plt.show()
@kusal1990
Copy link
Author

ok

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment