plt.xlabel参数
时间: 2023-07-21 19:18:05 浏览: 100
matplotlib 曲线图 和 折线图 plt.plot()实例
5星 · 资源好评率100%
在Python的Matplotlib库中,plt.xlabel()函数用于给X轴添加标签。它的参数是一个字符串,表示标签的文本,例如:
```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-axis label')
plt.show()
```
这个例子中,plt.xlabel()函数的参数是字符串'X-axis label',用于添加X轴标签。
阅读全文