Постройте гистограммы бок о бок

#matplotlib #plot #bar-chart

Вопрос:

У меня есть следующие 2 гистограммы. Как я могу расположить их рядом, а не один под другим?

 #Total Cases for Countries with 1 million   Population


country_labels = iso_code_var[pop1mill][sorted_top_20_deaths]
plt.xticks(rotation='vertical')
dummy = plt.bar(np.arange(len(country_labels)),cases_bar,width=bar_width,tick_label=country_labels)
plt.xlabel('iso_code')
plt.ylabel('total_cases_per_million')
plt.title('Total Cases for Countries with 1 million   Population')
plt.show()



#Population Density for Countries with 1 million   Population

country_labels = iso_code_var[pop1mill][sorted_top_20_deaths]
plt.xticks(rotation='vertical')
dummy = plt.bar(np.arange(len(country_labels)),popden_bar,width=bar_width,tick_label=country_labels)
plt.xlabel('iso_code')
plt.ylabel('Population Density')
plt.title('Population Density for Countries with 1 million   Population')
plt.show()
 

Комментарии:

1. fig, (ax1, ax2) = plt.subplots(ncols=2) , затем ax1.bar и ax2.bar , затем используйте set_xlabel и set_ylabel и set_title .