plt设置坐标轴刻度
时间: 2023-07-04 09:24:15 浏览: 168
修改python plot折线图的坐标轴刻度方法
要设置坐标轴刻度,可以使用matplotlib库中的pyplot子库。具体步骤如下:
1. 导入库:
```python
import matplotlib.pyplot as plt
```
2. 创建一个图形对象:
```python
fig, ax = plt.subplots()
```
3. 设置坐标轴刻度:
```python
ax.set_xticks([0, 1, 2, 3]) # 设置x轴刻度为0、1、2、3
ax.set_yticks([0, 2, 4, 6]) # 设置y轴刻度为0、2、4、6
```
4. 可以使用`ax.set_xticklabels()`和`ax.set_yticklabels()`方法来设置刻度标签:
```python
ax.set_xticklabels(['Jan', 'Feb', 'Mar', 'Apr']) # 设置x轴刻度标签为Jan、Feb、Mar、Apr
ax.set_yticklabels(['0%', '20%', '40%', '60%']) # 设置y轴刻度标签为0%、20%、40%、60%
```
5. 最后,显示图形:
```python
plt.show()
```
这样,就可以设置坐标轴刻度了。
阅读全文