plot xlabel
时间: 2023-07-06 19:11:29 浏览: 55
MATLAB编程plot函数用法举例
`plot()` 方法是 Pandas 库中 DataFrame 数据类型的一个方法,用于绘制图表。在绘制柱形图时,可以使用 `xlabel` 参数来设置横轴的标签。具体来说,可以在 `plot()` 方法中的 `xlabel` 参数中指定横轴标签的内容,示例代码如下:
```
import pandas as pd
import matplotlib.pyplot as plt
# 创建 DataFrame 数据
data = {'apples': [3, 2, 4, 1], 'oranges': [1, 4, 2, 3]}
df = pd.DataFrame(data)
# 绘制柱形图
df.plot(kind='bar', title='Fruit Sales')
# 设置横轴标签
plt.xlabel('Fruit')
# 显示图像
plt.show()
```
其中 `plt.xlabel('Fruit')` 表示设置横轴标签为“Fruit”。
阅读全文