plt.plot设置横坐标
时间: 2023-11-17 12:00:43 浏览: 247
matlab 读取mat类型文件plot,可设置横纵坐标、图例及其字体字号大小,图窗位置及大小.zip
可以使用plt.xticks()函数来设置横坐标的刻度和标签。该函数的参数ticks用于设置刻度的位置,labels用于设置刻度的标签。例如,如果要将横坐标的刻度设置为1, 2, 3, 4, 5,对应的标签为'a', 'b', 'c', 'd', 'e',可以使用以下代码:
```
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.xticks([1, 2, 3, 4, 5], ['a', 'b', 'c', 'd', 'e'])
plt.show()
```
这样就可以将横坐标的刻度和标签设置为自定义的内容。
阅读全文