plt.xticks()设置标识
时间: 2023-10-12 07:19:29 浏览: 138
对Python中plt的画图函数详解
`plt.xticks()`是用于设置x轴刻度的函数,可以设置刻度的位置和标识。一般情况下,我们可以通过传入一个包含刻度位置和标识的元组列表来设置x轴刻度的标识,例如:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
# 设置x轴刻度的位置和标识
plt.xticks([1, 2, 3, 4, 5], ['Jan', 'Feb', 'Mar', 'Apr', 'May'])
plt.show()
```
上述代码中,`plt.xticks([1, 2, 3, 4, 5], ['Jan', 'Feb', 'Mar', 'Apr', 'May'])`表示将x轴刻度位置设置为1,2,3,4,5,对应的标识分别为Jan, Feb, Mar, Apr, May。这样就可以在图表中显示出x轴刻度的标识了。
阅读全文