Created
January 10, 2018 17:56
-
-
Save dipanjanS/aa49957458050e97d36f3cd18580ee87 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
# Using subplots or facets along with Bar Plots | |
fig = plt.figure(figsize = (10, 4)) | |
title = fig.suptitle("Wine Type - Quality", fontsize=14) | |
fig.subplots_adjust(top=0.85, wspace=0.3) | |
# red wine - wine quality | |
ax1 = fig.add_subplot(1,2, 1) | |
ax1.set_title("Red Wine") | |
ax1.set_xlabel("Quality") | |
ax1.set_ylabel("Frequency") | |
rw_q = red_wine['quality'].value_counts() | |
rw_q = (list(rw_q.index), list(rw_q.values)) | |
ax1.set_ylim([0, 2500]) | |
ax1.tick_params(axis='both', which='major', labelsize=8.5) | |
bar1 = ax1.bar(rw_q[0], rw_q[1], color='red', | |
edgecolor='black', linewidth=1) | |
# white wine - wine quality | |
ax2 = fig.add_subplot(1,2, 2) | |
ax2.set_title("White Wine") | |
ax2.set_xlabel("Quality") | |
ax2.set_ylabel("Frequency") | |
ww_q = white_wine['quality'].value_counts() | |
ww_q = (list(ww_q.index), list(ww_q.values)) | |
ax2.set_ylim([0, 2500]) | |
ax2.tick_params(axis='both', which='major', labelsize=8.5) | |
bar2 = ax2.bar(ww_q[0], ww_q[1], color='white', | |
edgecolor='black', linewidth=1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment