python turtle简易绘图(详解Python使用Plotly绘图工具,绘制甘特图)
类别:脚本大全 浏览量:1663
时间:2021-10-23 10:26:03 python turtle简易绘图
详解Python使用Plotly绘图工具,绘制甘特图今天来讲一下如何使用python 的绘图工具plotly来绘制甘特图的方法
甘特图大家应该了解熟悉,就是通过条形来显示项目的进度、时间安排等相关情况的。
我们今天来学习一下,如何使用ployly来绘制甘特图
绘制甘特图的函数为plotly.figure_factoryz中create_gantt方法
通过参数事件task,开始start,结束finish的时间的数据来绘制甘特图
|
import plotly as py import plotly.figure_factory as ff pyplt = py.offline.plot df = [ dict (task = "项目1" , start = '2019-02-01' , finish = '2019-05-28' ), dict (task = "项目2" , start = '2019-03-05' , finish = '2019-04-15' ), dict (task = "项目3" , start = '2019-03-20' , finish = '2019-05-30' )] fig = ff.create_gantt(df) pyplt(fig, filename = 'tmp/1.html' ) |
运行上诉代码,我们可以看到纵坐标为我们的的项目数量。横坐标时间不短增加,越接近纵坐标的,说明事件发生的情况越早。
还可以在甘特图中加入数字索引值
代码如下:
|
import plotly as py import plotly.figure_factory as ff pyplt = py.offline.plot df = [ dict (task = "项目1" , start = '2019-01-01' , finish = '2019-02-28' , complete = 10 ), dict (task = "项目2" , start = '2018-12-05' , finish = '2019-04-15' , complete = 10 ), dict (task = "项目3" , start = '2019-02-20' , finish = '2019-05-30' , complete = 50 ), dict (task = "项目4" , start = '2019-03-20' , finish = '2019-06-30' , complete = 50 ), dict (task = "项目5" , start = '2019-01-12' , finish = '2019-04-28' , complete = 100 ), dict (task = "项目6" , start = '2019-03-07' , finish = '2019-08-21' , complete = 100 )] fig = ff.create_gantt(df, index_col = 'complete' , show_colorbar = true) pyplt(fig, filename = 'tmp/1.html' ) |
运行上诉代码,可以看到右边出现了索引条,每项工作后的complete属性即为其对应的索引值,在create_gamtt函数中
设置,index_col = ‘complete',则会出现相同条形对应相同颜色的,可以根据颜色来盘点任务大概对应的索引值是多少。
这个值得范围0-100,用来反映工作完成的进度,100表示全部完成,0表示没有进展。
接下来讲解如何按照类别来进行索引
|
import plotly as py import plotly.figure_factory as ff pyplt = py.offline.plot df = [ dict (task = "项目1" , start = '2019-01-01' , finish = '2019-02-02' , resource = 'complete' ), dict (task = "项目2" , start = '2019-02-15' , finish = '2019-03-15' , resource = 'incomplete' ), dict (task = "项目3" , start = '2019-01-17' , finish = '2019-02-17' , resource = 'not started' ), dict (task = "项目4" , start = '2019-01-17' , finish = '2019-02-17' , resource = 'complete' ), dict (task = "项目5" , start = '2019-03-10' , finish = '2019-03-20' , resource = 'not started' ), dict (task = "项目6" , start = '2019-04-01' , finish = '2019-04-20' , resource = 'not started' ), dict (task = "项目7" , start = '2019-05-18' , finish = '2019-06-18' , resource = 'not started' ), dict (task = "项目8" , start = '2019-01-14' , finish = '2019-03-14' , resource = 'complete' )] colors = { 'not started' : 'rgb(220, 0, 0)' , 'incomplete' : ( 1 , 0.9 , 0.16 ), 'complete' : 'rgb(0, 255, 100)' } fig = ff.create_gantt(df, colors = colors, index_col = 'resource' , group_tasks = true) pyplt(fig, filename = 'tmp/1.html' ) 运行上诉代码,得到如下图所示内容 |
运行上诉代码,得到如下图所示内容
这里我们通过按照不同的颜色,来分别项目的类型。同一颜色,为同一项目。在每一项数据中
resource代表此项工作所属的状态。这里分了三种状态。
通过在设置create_gantt函数中的index_col = 'resource'即可完成。
color属性用于设置不同状态对应的颜色。
以上所述是小编给大家介绍的python使用plotly绘图工具,绘制甘特图详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对开心学习网网站的支持!
原文链接:https://blog.csdn.net/u012798683/article/details/88852291
您可能感兴趣
- python入门之字符串处理(Python中常用的8种字符串操作方法)
- python时间类的实现(Python日期时间Time模块实例详解)
- python列表中的数组(Python3.4学习笔记之列表、数组操作示例)
- python利用空列表进行数字排序(python实现计数排序与桶排序实例代码)
- python中字典的主要特点(Python里字典的基本用法包括嵌套字典)
- python零基础入门加密与解密(Python玩转加密的技巧推荐)
- python定时任务脚本(对Python定时任务的启动和停止方法详解)
- python技巧图解(Python魔法方法功能与用法简介)
- python基本运算符编程(对Python3 * 和 ** 运算符详解)
- python中赋值语句规则(Python动态赋值的陷阱知识点总结)
- python删除数据框重复变量(Python3删除排序数组中重复项的方法分析)
- python比较两文件内容(Python判断两个文件是否相同与两个文本进行相同项筛选的方法)
- python 多进程读取文件(Python实现的多进程拷贝文件并显示百分比功能示例)
- python 提取微信消息(python实现文件助手中查看微信撤回消息)
- python中如何清空列表数据(Python批量删除只保留最近几天table的代码实例)
- python创建字典的代码(Python创建字典的八种方式)
- 汉族(汉族的祖先是谁)
- 中国有几个名族(中国有几个民族没列入56个民族)
- 数学语文题目(语文的数学题)
- 香蕉(香蕉三种人不宜吃)
- 没钱可以快乐吗(没钱也能快乐吗)
- 快乐是什么(快乐就是)
热门推荐
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9