Last active
June 24, 2022 06:28
-
-
Save kusal1990/a60504436bcd5bdd1635d0ebb23da3d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ok