帮助从执行算法生成图表
我应该从我的算法的结果/执行生成图表。我听说过有关在 Excel 中使用 CSV 文件并生成图表的信息。我不知道这个 CSV 文件是什么以及如何操作。我用谷歌搜索了 CSV 文件,但得到的答案与数据库有关。
我问是否有人可以向我展示或向我指出以前做过此类事情的教程。例如,我必须从快速排序算法生成一个图,并同时使用许多算法生成另一个图。
需要帮助请
谢谢
I am suppose to generate graph from the results/execution of my algorithm . I have heard something about using CSV file in Excel and generating the graph. I have no idea what this CSV file is and how to do it. I googled CSV file but the answer i got was in connection with databases.
I am asking if someone can show me or point me to a tutorial where this kind of thing has been done before. For instance i have to generate a graph from a Quicksort algorithm and also generate another graph with many algorithms at the same time.
Need help please
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CSV ==“逗号分隔值”。它是一个每行一行的文件,其中每个值都用逗号分隔。
我不确定这与您的算法或生成图表有什么关系。
由于您使用的是 Java,因此您可以使用 AT&T 的 GraphViz 轻松生成漂亮的图表。我认为这是一个很棒的工具。
CSV == "comma separated values". It's a file that has one row per line, where each value is separated by a comma.
I'm not sure how this is relevant to your algorithm or generating graphs.
Since you're using Java, you can easily generate a nice looking graph using GraphViz from AT&T. I think it's a terrific tool.