横坐标我想要每隔开21个显示一次
时间: 2024-03-02 09:50:01 浏览: 123
matplotlib命令与格式之tick坐标轴日期格式(设置日期主副刻度)
5星 · 资源好评率100%
你可以使用`MultipleLocator`类来设置横坐标的间隔。以下是代码示例:
```python
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
fig, ax = plt.subplots()
ax.plot(x, y)
# 设置横坐标间隔为21
ax.xaxis.set_major_locator(ticker.MultipleLocator(21))
plt.show()
```
在这个示例中,`ticker.MultipleLocator(21)`将横坐标的间隔设置为21。你可以根据需要调整间隔大小。
阅读全文