我已经执行了以下代码来得到我的身材:
plt.figure()
plt.plot(X, Y, 'r')
plt.ylabel('Ampl')
plt.gcf().autofmt_xdate()
plt.title(My_day.strftime('%d/%m/%Y'))
plt.ylim(0,0.1)
plt.show()
我得到了下一张照片: the content is fine in my pciture
问题是我想避免在图的两个部分之间绘制该线,例如,我想像这样:两个分开的部分: This picture I found it in the internet
我该怎么办?