导入某个函数时,pyplot.show()不起作用

时间:2016-06-09 15:39:47

标签: python-2.7 matplotlib

从Microsoft的程序“FaSTLMM”导入函数single_snp可防止python2.7显示matplotlib图。省略导入时,绘图正确显示。如何导入此函数会干扰pyplot的绘图? (我需要single_snp来执行我想要显示的图中使用的计算。)

from fastlmm.association import single_snp

import matplotlib.pyplot as plt
plt.plot([1,2,3])
plt.show()

可以在此处找到single_snp的源代码:https://github.com/MicrosoftGenomics/FaST-LMM/blob/master/fastlmm/association/single_snp.py

我尝试了不同的后端(参见Why doesn't pyplot.show() work?),但无济于事。

0 个答案:

没有答案