所以我一直在绘制两个不同的图表,现在想添加不同的字幕。不幸的是,我的代码未运行(从第二行和第三行的底部开始)。我希望有人能帮助我,并提前谢谢您。
f, (ax1, ax2) = plt.subplots(nrows=1, ncols=2, figsize=(12,5))
sns.countplot(x='month',hue='year', data=continent_0[continent_0["is_booking"] == 1], ax=ax1)
sns.pointplot(x='month',y='is_booking',hue='year', ci=None, data=continent_0, ax=ax2)
ax1.set(xlabel = 'Month', ylabel = 'Bookings')
ax2.set(xlabel = 'Month', ylabel = 'Bookings')
ax1.fig.suptitle('Absoulute Number of Bookings', y=1.03)
ax2.fig.suptitle('Conversion Rate', y=1.03)
plt.subplots_adjust(wspace = 0.2)