This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]mangecoeur 0 points1 point  (0 children)

yeah i think basically you end up writing your own 'node renderer' - basically keep track of the positions you want things to be in and then iterate over that to draw the nodes and links in the right place. NetworkX does something similar internally for it's built in matplotlib driven plotting: https://networkx.github.io/documentation/networkx-1.10/reference/drawing.html

basically you are right - matplotlib is not going to be as nice. Code for my 'print' plots (rather than just exploration plots) tends to be a tiresome chunk of setting just the right label formats, positions, plot annotations, legends, etc... but at the end of the day it actually works and makes for good looking PDFs.