Created
June 24, 2022 06:49
-
-
Save kusal1990/99972c34ec1cef70b9fc337a90e42943 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
# Test SchoolGrade | |
def plot_subplot_bar(data,type_): | |
print(type_+" dataset Analysis ...............") | |
plt.figure(figsize=(16,4.5)) | |
for i,v in enumerate(["Train","Test","Dev"],start = 1): | |
plt.subplot(1,3,i) | |
plt.title(v+"_schoolGrade vs No_of_times_used("+type_+")") | |
sns.distplot(eval(v+data)) | |
plt.xticks([i for i in range(11)]) | |
plt.ylabel("No_of_times_used") | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ok