我有一个简单的问题,但我不知道如何解决它。
在y轴上,我的值为[60.8, 60.9, 60.9]
。
所以,当我绘制它时,它会在最后形成一条水平线,因为我们没有变化。
问题是,水平线落后于情节的极限,并且阅读不好。
我该如何解决这个问题? 我已经尝试了一些关于比例和一些其他配置的功能,但没有。
答案 0 :(得分:0)
您可以通过以下方式调整x
和y
限制:
import matplotlib
xmin, xmax = matplotlib.pyplot.xlim() # return the current xlim
matplotlib.pyplot.xlim( (xmin, xmax) ) # set the xlim to xmin, xmax
matplotlib.pyplot.xlim( xmin, xmax ) # set the xlim to xmin, xmax