我有一个标题,但我还希望添加两个子标题。图形被打破或分为两个子图表,因此需要两个字幕。
#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选项?我真的很想拥有无限的字幕,谈论权力!
答案 0 :(得分:0)
您可以使用字符串格式将第二个字符串添加到新行中
plt.suptitle(f'(subtitle_string_1}\n{subtitle_string_2}', fontsize=6, x=0.9, y=0.8)