📜  子图的相互化 xlabel - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:22.207000             🧑  作者: Mango

代码示例1
import matplotlib.pyplot as plt

fig, ax = plt.subplots(nrows=3, ncols=3, sharex=True, sharey=True, figsize=(6, 6))

fig.text(0.5, 0.04, 'common X', ha='center')
fig.text(0.04, 0.5, 'common Y', va='center', rotation='vertical')