我有一个标题,但我也希望增加两个副标题。该图被打破或分为两个子图表,因此需要两个字幕。
#Add sub-plot
subtitle_string_1=("An In-depth Comparison")
subtitle_string_2=("Immediately Following
First Of The Month Following")
plt.suptitle(subtitle_string_1,fontsize=6,x=0.9, y=0.8)
plt.suptitle(subtitle_string_2,fontsize=6,x=.41, y=0.86, color='grey')
是否有sub_subtitle选项?我真的很想有无限的字幕,谈论权力!
2条答案
按热度按时间qco9c6ql1#
可以使用字符串格式将第二个字符串添加到新行
oxiaedzo2#
您可以根据需要多次使用以下内容-
plt.text(x_position, y_position, "Title", color='b', fontsize=12)
:或
ax.text(x_position, y_position, "Title", color='b', fontsize=12)
: