Python使用WebGraphviz输出决策树不围绕页面的方法,可以使用Python的Graphviz模块来实现。Graphviz模块是一个用于创建和渲染图形的Python库,可以用它来创建决策树,将决策树输出到WebGraphviz上,以便在网页上展示。
pip install graphviz
from graphviz import Digraph dot = Digraph(comment='The Round Table') dot.node('A', 'King Arthur') dot.node('B', 'Sir Bedevere the Wise') dot.node('L', 'Sir Lancelot the Brave') dot.edges(['AB', 'AL']) dot.edge('B', 'L', constraint='false') print(dot.source)
import requests url = 'http://www.webgraphviz.com/' data = {'graph': dot.source} res = requests.post(url, data=data) print(res.text)
本文链接:http://task.lmcjl.com/news/11419.html