Skip to content
Advertisement

Tag: shapes

How to draw shapes in a graph using nodes and edges in python?

I need to draw the shapes from the following photo in a graph. I need to transpose the shapes in a graph in Python with nodes and edges. img1 Answer One of the standard tools for defining graphs like this is the DOT language used by Graphviz. You can create DOT graph descriptions and render them with the PyPI package

Advertisement