python绘图横坐标轴纵向显示
时间: 2023-10-25 10:23:20 浏览: 188
使用Python matplotlib作图时,设置横纵坐标轴数值以百分比(%)显示
在 Python 中,可以使用 Matplotlib 库来绘制图表。要在 Matplotlib 中设置横坐标轴和纵坐标轴的标签和范围,可以使用以下代码:
```python
import matplotlib.pyplot as plt
# 创建数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制图表
plt.plot(x, y)
# 设置横坐标轴和纵坐标轴的标签
plt.xlabel('x')
plt.ylabel('y')
# 设置横坐标轴和纵坐标轴的范围
plt.xlim(0, 6)
plt.ylim(0, 12)
# 显示图表
plt.show()
```
在此示例中,我们创建了一个简单的数据集,并使用 `plt.plot()` 函数绘制了一个图表。然后,我们使用 `plt.xlabel()` 和 `plt.ylabel()` 函数来设置横坐标轴和纵坐标轴的标签。最后,我们使用 `plt.xlim()` 和 `plt.ylim()` 函数来设置横坐标轴和纵坐标轴的范围。
运行此代码将显示一个带有标签和范围的图表。
阅读全文