module helpgen.graphviz_helper

Short summary

module pyquickhelper.helpgen.graphviz_helper

Helper about graphviz.

source on GitHub

Functions

function

truncated documentation

plot_graphviz

Plots a dot graph into a matplotlib plot.

Documentation

Helper about graphviz.

source on GitHub

pyquickhelper.helpgen.graphviz_helper.plot_graphviz(dot, ax=None, temp_dot=None, temp_img=None, dpi=300, keep_axis=False)[source]

Plots a dot graph into a matplotlib plot.

Parameters:
  • dot – dot language

  • ax – existing ax

  • temp_dot – temporary file, if None, a file is created and removed

  • temp_img – temporary image, if None, a file is created and removed

  • dpi – dpi

  • keep_axis – keep axis in the graph

Returns:

ax

source on GitHub