많은 하위 그림이 포함 된 그림이 하나 있습니다.
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()
존재 하지만 후자는 내 하위 그림에 제목을 추가하지 않습니다.
도와 주셔서 감사합니다.
편집 :에 대한 오타가 수정되었습니다 set_title()
. 감사합니다 Rutger Kassies