plt.xlabel('Times') plt.ylabel('price') plt.show()
时间: 2023-08-10 18:02:17 浏览: 82
label上显示当前时间的
好的,如果您想要将横轴和纵轴标签设置为'Times'和'price',可以使用matplotlib库中的xlabel和ylabel方法。以下是一个简单的例子:
```
import matplotlib.pyplot as plt
# 生成一些示例数据
times = [1, 2, 3, 4, 5]
prices = [10, 20, 30, 40, 50]
# 绘制折线图
plt.plot(times, prices)
plt.xlabel('Times')
plt.ylabel('Price')
plt.title('Example Plot')
plt.show()
# 绘制柱状图
plt.bar(times, prices)
plt.xlabel('Times')
plt.ylabel('Price')
plt.title('Example Plot')
plt.show()
```
在上面的代码中,我们使用xlabel和ylabel方法将横轴和纵轴标签设置为'Times'和'Price',并使用title方法设置图形标题。
阅读全文