I'd like to make a [2,2] subplot of charts/graphs using the first three open plots for the graphs and the 4 spot for bullet points about the graphs/charts. Is this possible using python/matplotlib?
Take for example the code below:
plt.style.use('fivethirtyeight')
fig, axes = plt.subplots(2,2)
fig.suptitle("Owner Occupied Loss Ratio")
sns.barplot(ax = axes[0,0], x=decile_oo['decile'], y=np.round((decile_oo['NonCAT Loss Ratio']*100),2), color = 'blue')
# g.bar_label(ax.containers[0])
sns.barplot(ax = axes[0,1], x=decile_oo['decile'], y=np.round((decile_oo['NonCAT Frequency']*100),2), color = 'red')
# f.bar_label(ax.containers[0])
sns.barplot(ax = axes[1,0], x=decile_oo['decile'], y=np.round((decile_oo['NonCAT Severity']*100),2), color = 'green')
# i.bar_label(ax.containers[0])
plt.tight_layout()
plt.show()
That produced the below graphic.
I'd like that blank graph in position [1,1] to have bullet points I type out instead of a blank graph. Is this possible?