如何使用matplotlib减少轴上的刻度数(不使用pyplot)?
self.figure = Figure((2.0, 2.0))
self.canvas = FigureCanvas(self.figure)
self.canvas.setParent(self)
self.axes = self.figure.add_subplot(111)
self.figure.subplots_adjust(left=0.18)
self.axes.fill(x, y, 'b')
现在....?
答案 0 :(得分:3)
在pyplot中它是xticks(...)
,但我在matplotlib中找不到。
事实证明,你必须使用set_xticks