python schedule 画图
时间: 2023-06-21 17:07:51 浏览: 134
你可以使用 Matplotlib 库来绘制 Python schedule 图表。下面是一个简单的例子:
```python
import matplotlib.pyplot as plt
# 定义数据
tasks = ['Task 1', 'Task 2', 'Task 3']
start_times = [3, 5, 9]
end_times = [6, 8, 12]
# 绘图
fig, ax = plt.subplots()
for i in range(len(tasks)):
ax.barh(tasks[i], end_times[i] - start_times[i], left=start_times[i])
# 设置标签和标题
ax.set_xlabel('Time')
ax.set_ylabel('Tasks')
ax.set_title('Daily Schedule')
# 显示图表
plt.show()
```
这个例子定义了三个任务,每个任务有一个开始时间和结束时间。然后,我们使用 `barh()` 方法绘制水平条形图来表示每个任务的持续时间。最后,我们添加标签和标题,然后显示图表。
你可以根据自己的需求修改数据和图表属性。
阅读全文