7
Matplotlib에서 하위 플롯에 제목을 추가하는 방법은 무엇입니까?
많은 하위 그림이 포함 된 그림이 하나 있습니다. fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('Window Title') # Returns the Axes instance ax = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) 서브 플로트에 제목을 어떻게 추가합니까? fig.suptitle모든 그래프에 제목을 추가하고 ax.set_title()존재 하지만 후자는 내 하위 그림에 제목을 추가하지 않습니다. …
225
python
matplotlib
plot
subtitle