Matplotlib fill_between()无法正确保存为带填充的pdf

时间:2016-05-19 20:49:56

标签: python pdf matplotlib ipython jupyter

在尝试将matplotlib fill_between()绘图保存为ipython中的pdf时,我遇到了以下问题。

import matplotlib.pyplot as plt
A =[1,2,3,4,5,6]
B = [10,20,30,40,50,60]
plt.fill_between(A,A,B,color="none", hatch="\\\\\\\\\\\\", edgecolor="grey", linewidth=0.0,alpha=1)
plt.savefig('test.pdf')

当我运行它时,我在ipython笔记本中找到以下情节: image shown in the ipython notebook, or when saved directly as .png

但是,当我打开保存的文件时,它看起来像这样: image when saved as a pdf

舱口几乎看不见。我需要一个高质量的情节,这就是为什么我试图保存为pdf而不是png,例如。有没有办法在保存pdf时增加阴影线的宽度?

0 个答案:

没有答案