multiplot を並べる
2-5_c
fig = plt.figure(facecolor="skyblue")
axes = fig.subplot_mosaic(
[
"A", ".", "C"
,
"B", "B", "C"
,
],
subplot_kw=dict(facecolor="green"),
)
fig.savefig("2-5_c.png", facecolor=fig.get_facecolor())