python – matplotlib stepfilled直方图在xubuntu上的值为10 ^ -1

前端之家收集整理的这篇文章主要介绍了python – matplotlib stepfilled直方图在xubuntu上的值为10 ^ -1前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

为什么当代码通过python运行时,图形似乎在y轴上以10 ^ -1分解?(下面的代码)

from pylab import *

bins = [+0.000e+00,+1.000e+00,+2.000e+00,+3.000e+00,+4.000e+00,+5.000e+00]
wght = [[+3.000e-02,+7.0e-02,+3.0e-01,+5.0e-01,+8.0e-01]]

hist([ bins[:-1] for i in range(len(wght)) ],bins=bins,weights=wght,histtype="stepfilled",log=True )

ylim(bottom=0.01); ylim(top=1.0)

savefig("./output.pdf")

应该是什么样的:

Correct image stepping past 10**-1

它实际上是什么样的:

Broken output

我目前在Xubuntu 14.04上运行python 2.7,这个错误发生在很多直方图上.出于某种原因,当在Windows上打开并运行Python(x,y)时,我们得到第一个直方图(它应该是什么样子)但是当我在Xubuntu上移动到python时,我尝试运行的所有图形都与此类似在y轴上的10 ^ -1.(它实际上是什么样的)我可以用这个代码做什么来确保它在我想要运行的任何python版本上输出第一个gyazo图片

最佳答案
旧版本中存在此行为,建议安装新版本.

输出与python 2.7和matplotlib 1.4.2(debian / jessie)不同,但不是python 2.7和matplotlib 1.3.1(xubuntu 14.04 / trusty).

可以使用matplotlib的版本进行检查

python -c 'import matplotlib; print(matplotlib.__version__)'
原文链接:https://www.f2er.com/python/438480.html

猜你在找的Python相关文章