Paul Brodersen

Results 119 comments of Paul Brodersen

I cannot find a standalone python implementation and I would rather not make graphviz a dependency of the project. If you have an implementation handy, I am open to working...

The `SugiyamaLayout` is more akin to `neato` layout in graphviz, though, not the layout proposed in the HOLA paper -- isn't it?

Thanks for the link, that is useful.

Hi, thanks for raising the issue and sorry about the late reply -- I was on holiday. > OK, the problem isn't the size of the network, it is in...

I haven't fixed the underlying issue but at least the problem is documented in the docstring and the error message indicates the potential issue (when it does indeed occur), so...

> I also keep receiving this Warnings whenever I touch the blank space between the border of the Figure and the border of the Window. That is the expected/desired behaviour....

> It is possible to see that the graph can't touch the horizontal borders of the Window, doesn't matter how I scale it. The axis is tight around the graph....

Just to be perfectly clear, you should get a tighter fit with: ```python self.graph = EditableGraph([(0, 1)], scale=(1.5, 2), ax=self.ax) ```

On my machine, your code now produces a tight fitting window. ```python import sys import matplotlib; matplotlib.use("Qt5Agg") from PyQt5 import QtWidgets from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg import matplotlib.pyplot as plt from...

Are you sure, you are not changing the figure dimensions in some other way, e.g. by maximizing the window?