任务持续时间——如何从 CSV 生成类似甘特图的图表
我有这个 CSV 数据:
Task,From,To,Duration
Task 1, 2011-02-20 12:30.12, 2011-02-20 12:32.33, 3422
Task 2, 2011-02-17 15:39.32, 2011-02-18 9:05.23, 345
Task 3, 2011-02-15 09:02.09, 2011-02-18 9:05.24, 3453455
我想生成类似甘特图的东西,以秒为单位显示任务何时开始和结束。
有没有Excel模板工具可以轻松完成这项工作?
我不想每次粘贴数据时都在 Excel 中设置甘特图。 只是为了将 CSV 加载到某些应用程序中。看看吧。 :)
谢谢 马丁
I have this CSV data:
Task,From,To,Duration
Task 1, 2011-02-20 12:30.12, 2011-02-20 12:32.33, 3422
Task 2, 2011-02-17 15:39.32, 2011-02-18 9:05.23, 345
Task 3, 2011-02-15 09:02.09, 2011-02-18 9:05.24, 3453455
And I would like to generate something like a gantt chart showing when task has started and ended with seconds granularity.
Is there any tool of Excel template which can do this job easily?
I dont want to set up gantt charts in excel every time I paste data.
Just to load CSV into some app. and see. :)
Thank you
Martin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我终于找到了一个很好的解决方案:
我正在使用图形工具 GNUPlot (http://www.gnuplot.info/ )。图表是通过这个很棒的Python脚本生成的:
http://wiki.mn.wtb .tue.nl/wonham/gantt.py
I finally found one good solution:
I am using graphical tool GNUPlot (http://www.gnuplot.info/). Graph is generated thanx to this great python script:
http://wiki.mn.wtb.tue.nl/wonham/gantt.py
我将此 CSV 写入到 Gnome Planner 转换器 脚本Python
这是它的实际应用:
I wrote this
CSV
toGnome Planner
converter script in PythonHere it is in action:
名为 WinCalendar 的 Windows 应用程序可将 CSV 或 Excel 数据转换为 Excel 中的甘特图。请参阅:wincalendar.com/Gantt-Chart
An Windows App called WinCalendar converts CSV or Excel data to Gantt Charts in Excel. See: wincalendar.com/Gantt-Chart