标签: python-3.x matplotlib colors polygon fill
当我使用plt.fill_between(doldurX, doldurY, color='red')时,它会在图片中创建一些多余的线条。但是,如果仅使用plt.fill_between(doldurX, doldurY)(不带颜色的部分),则不会创建这些行。
plt.fill_between(doldurX, doldurY, color='red')
plt.fill_between(doldurX, doldurY)
The picture with lines (Unwanted)
Without color part (Clear)