Graphviz之DT:手把手教你使用可视化工具Graphviz将dot文件转为结构图的pdf文件
程序员文章站
2022-04-26 22:25:40
...
Graphviz下载安装
第一步:我们首先下载可视化工具Graphviz,百度,官网可直接下载,不过比较慢,我这里有云盘链接https://pan.baidu.com/s/1c2uFojA,点击即可下载
云盘更新
链接:https://pan.baidu.com/s/1r9f4eypdHQ0K96R2d7w7eg 密码:7l7s
第二步:安装Graphviz,一路next即可,
Graphviz配置环境
第三步:在计算机上设置环境变量,将安装路径加载到path上
Graphviz使用方法
第四步:cmd,在dos环境下,dot-Tpdf input.dot -o convertoutput.pdf命令,即可将niu.dot转为niu.pdf,大功告成啦,哈哈
我的dot文件是下边这个模样
digraph Tree {
node [shape=box] ;
0 [label="native=no <= 0.5\nentropy = 0.985\nsamples = 14\nvalue = [6, 8]"] ;
1 [label="entropy = 0.0\nsamples = 7\nvalue = [0, 7]"] ;
0 -> 1 [labeldistance=2.5, labelangle=45, headlabel="True"] ;
2 [label="income=high <= 0.5\nentropy = 0.592\nsamples = 7\nvalue = [6, 1]"] ;
0 -> 2 [labeldistance=2.5, labelangle=-45, headlabel="False"] ;
3 [label="entropy = 0.0\nsamples = 6\nvalue = [6, 0]"] ;
2 -> 3 ;
4 [label="entropy = 0.0\nsamples = 1\nvalue = [0, 1]"] ;
2 -> 4 ;
}
第五步:观察pdf文件即可,哈哈,五步,so easy!