从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?),但无济于事。