作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的图中,yticks 彼此太靠近了(因为我更改了 yticks 字体)。所以我想限制/修复 yticks 的数量。因为我有数百个地 block ,所以我想更改“全局”(在 matplotlibrc 中或使用字典等)
有什么想法吗?类似于 ax.xaxis.set_major_locator(MaxNLocator(4))
但全局
顺便说一句:我无法找到如何在不使用子图的情况下引用轴。有什么提示吗?
最佳答案
您可以在任何绘图之前将 AutoLocator 的 __init__
方法更改为您的函数:
import pylab as pl
from matplotlib import ticker
def AutoLocatorInit(self):
ticker.MaxNLocator.__init__(self, nbins=4, steps=[1, 2, 5, 10])
ticker.AutoLocator.__init__ = AutoLocatorInit
pl.plot(pl.randn(100))
pl.figure()
pl.hist(pl.randn(1000), bins=40)
pl.show()
关于matplotlib 全局设置间距/刻度数/xticks 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10313173/
我有一个 UITableView,在标题中有一个 View 。此 View 具有细条纹背景并包含一个 UILabel。我希望 UILabel 文本看起来像节标题的文本。我怎样才能做到这一点? 最佳答案
我是一名优秀的程序员,十分优秀!