如何避免连接图形的分离部分

时间:2019-01-16 12:15:29

标签: python matplotlib

我已经执行了以下代码来得到我的身材:

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

我该怎么办?

0 个答案:

没有答案