我正在尝试注释一个子图。 我想在情节中写一封信,以便在我写下标题时提供帮助..
到目前为止,我正在尝试这种方式。 没有结果。 有什么帮助吗?fname='SHOT_'+str(shot)
plt.figure(fname)
ftitle='Time Traces - '+str(nshot[i])
plt.suptitle(ftitle, fontsize=11)
#PLOT 1
ax1 = plt.subplot(711)
# xy = get_axis_limits(ax1)
# print(xy)
plt.scatter(timetraces['Time_LID3'], savitzky_golay(np.array(timetraces['KG1V/LID3']), 17, 1),color='red', label="KG1V",s=10)
fxlabel='Time [s]'
fylabel='$part/m^{-2}$'
plt.locator_params(axis='y',nbins=4)
# plt.xlabel(fxlabel,{'color': 'k','size': 11})
plt.ylabel(fylabel,{'color': 'k','size': 8})
plt.setp(ax1.get_xticklabels(), visible=False)
plt.legend(prop={'size':8})
ax1.yaxis.set_minor_locator(AutoMinorLocator())
ax1.xaxis.set_minor_locator(AutoMinorLocator())
ax1.annotate('G', xy=get_axis_limits(ax1))
plt.subplots_adjust(wspace=0, hspace=0)
plt.show()