python 根据工作时长和工资绘制折线图
时间: 2023-11-03 10:04:20 浏览: 116
Python折线图绘制
好的,可以使用 Python 的 Matplotlib 库来绘制折线图。以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 定义 x 轴和 y 轴数据
hours = [4, 6, 8, 10, 12]
salary = [5000, 7000, 9000, 11000, 13000]
# 绘制折线图
plt.plot(hours, salary)
# 添加标题和坐标轴标签
plt.title('Salary vs. Hours')
plt.xlabel('Working Hours')
plt.ylabel('Salary')
# 显示图形
plt.show()
```
在这个示例中,我们定义了工作时长和对应的工资数据,然后使用 `plt.plot()` 函数来绘制折线图。最后,我们添加了标题和坐标轴标签,并使用 `plt.show()` 函数显示图形。你可以根据自己的数据进行修改。
阅读全文