Graphviz gnuplot

这两个都是因为用到snap的时候要画图和显示图的库。

windows下的安装还是挺容易的。gnuplot是有64位的库,graphviz是32位的。装完后,都记得要把路径改下,这样子才能成功的使用。

snap中有段测试代码分别测试gnuplot和graphviz,gnuplot的挺easy的。graphviz的其实也挺容易的,只是运行完之后,不是立马出来了结果,会产生一个dot文件。然后打开graphviz查看dot文件。虽然dot文件也可以用word打开。是一段转换后的代码。

具体可以参见这个解释在stackoverflow上面。http://stackoverflow.com/questions/1494492/graphviz-how-to-go-from-dot-to-a-graph、

原文如下:

type: dot -Tps filename.dot -o outfile.ps

If you want to use the dot renderer. There are alternatives like neato and twopi. If graphiz isn‘t in your path, figure out where it is installed and run it from there.

If you‘re using windows, check out the installed tool called GVEdit, it makes the whole process slightly easier.

Go look at the graphviz site in the section called "User‘s Guides" for more detail on how to use the tools:

http://www.graphviz.org/Documentation.php

(See page 27 for output formatting for the dot command, for instance)

http://www.graphviz.org/pdf/dotguide.pdf

时间: 2025-01-11 20:19:59

Graphviz gnuplot的相关文章

Graphviz(转载)

简述 原文: http://www.tuicool.com/articles/vy2Ajyu 本文翻译自 Drawing Graphs using Dot and Graphviz 1. 许可 Copyright (C) 2013, 2014 Tony Ballantyne. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documenta

使用DOT语言和Graphviz绘图(翻译)

Casa Taloyum About Me Blog Archives 使用DOT语言和Graphviz绘图(翻译) Date Wed 26 November 2014 Tags graphviz / dot 简述 本文翻译自Drawing Graphs using Dot and Graphviz 1. 许可 Copyright (C) 2013, 2014 Tony Ballantyne. Permission is granted to copy, distribute and/or mo

算法图绘制工具Graphviz

graphviz是贝尔实验室设计的一个开源的画图工具,它的强大主要体现在“所思即所得"(WYTIWYG,what you think is what you get),这是和office的“所见即所得“(WYSIWYG,what you see is what you get)完全不同的一种方式.它的输入是一个用dot语言 编写的绘图脚本,通过对输入脚本的解析,分析出其中的点,边以及子图,然后根据属性进行绘制.用graphviz来绘图的时候,你的主要工作就是编写dot脚本,你只要关注图中各个点之

GnuPlot初探

1.图中的叫做图例,参数设置是Key 2.ytcis是纵坐标的刻度,yrange是纵坐标的跨度 set ytics 0,0.05,1set yrange[0:1.05] 3.gnuplot中不可以换行的,换行后面加上\ 参考链接 gnuplot的api库:http://gnuplot.sourceforge.net/docs_4.2/node1.html 教程:http://dsec.pku.edu.cn/dsectest/dsec_cn/gnuplot/ 常见的操作:http://blog.c

Graphviz使用简介(中文乱码的问题)

Graphviz使用简介 graphviz是基于dot语言的绘图工具,可以画有向图.无向图.关系图.目录图.流程图等.具体作用可见它的官方网站 一些参考的网址: http://www.open-open.com/lib/view/open1455954987933.html https://www.oschina.net/question/129540_79958 http://blog.csdn.net/xiajian2010/article/details/23748557 如果想更进一步,

gnuplot conditional plotting: plot col A:col B if col C == x

http://stackoverflow.com/questions/6564561/gnuplot-conditional-plotting-plot-col-acol-b-if-col-c-x How can I do this in gnuplot: plot "test.csv" using 1:2 if value_in_column_3 == 80.0 It should only select those rows where column 3 == 80.0 and i

利用Graphviz画出图

graphviz官网:http://www.graphviz.org/ 背景:有画图需要,之前见到别人用graphviz画,画出来的图漂亮,且自动帮你排版安排布局,所以自己想尝试用它画. 其中遇到的几个问题 win系统下载msi安装包后进行安装,安装不成功,报错信息是win电脑却少什么包,最后转向Mac画图. 找到两个graphviz online的网站(http://www.webgraphviz.com/  和),都不太好用,不是对中文支持不好,就是稍微复杂一些的图他就画不出来了. Mac

如何在protégé 4.3安装GRAPHVIZ以便在PROTEGE中使用OWLVIZTAB?

首先感谢一下http://www.cnblogs.com/it_han_ku/archive/2009/10/21/1587600.html这篇文章, 由于protege的版本更新,很多细节发生了变化,我在protege4.3 中安装GRAPHVIZ成功了,和大家分享一下,其他的plugin也差不多用同样的方法. 打开protege 4.3 ,Help选项卡,点击protege-owl plugins 跳转至此页面http://protegewiki.stanford.edu/wiki/Prot

Gnuplot学习笔记

#1设置x.y坐标范围 set xrange[-5:5] yrange[-2:2] #也可以这样: plot [-5:5] [-2:2] sin(x) #2设置坐标轴名称.标题 set xlabel 'xlabel' ; set ylabel 'ylabel' ; set title 'title' ; #3为曲线设置标题 plot sin(x) title 'y=sin(x)',x title 'y=x' #设置标题的位置: set key x y set key default #不设置标题