Is There A Python Api For Drawing Diagrams (that Use Lines To Connect Corresponding Values Between Two Lists)
Given two lists, which contain same elements of string but in different orders, is there any API that can draw diagrams like The diagram consists of two stacks of string. Between
Solution 1:
The general graph description format DOT seems the most appropriate to me: it is easy to describe a huge variety of graphs, with this (text) format, and you can plot them with one of the many tools available (Graphviz comes to mind, for example).
You also have the specialized python-graph module at your disposal (which can work with the DOT format too).
Solution 2:
With python you have many options, see here for more. I would recommend matplotlib, take a look at this example.
Post a Comment for "Is There A Python Api For Drawing Diagrams (that Use Lines To Connect Corresponding Values Between Two Lists)"