List of all classes, functions and methods in python-igraph
class AbstractGraphDrawer(AbstractDrawer):
Known subclasses: igraph.drawing.cairo.graph.AbstractCairoGraphDrawer
, igraph.drawing.graph.CytoscapeGraphDrawer
, igraph.drawing.graph.GephiGraphStreamingDrawer
, igraph.drawing.matplotlib.graph.MatplotlibGraphDrawer
, igraph.drawing.plotly.graph.PlotlyGraphDrawer
Static Method | ensure_layout |
Helper method that ensures that layout is an instance of Layout . If it is not, the method will try to convert it to a Layout according to the following rules: |
Method | draw |
Abstract method, must be implemented in derived classes. |
Static Method | _determine_edge_order |
No summary |
Static Method | _determine_vertex_order |
No summary |
Helper method that ensures that layout is an instance of Layout
. If it is not, the method will try to convert it to a Layout
according to the following rules:
Layout
. This handles lists of lists, lists of tuples and such.If layout is already a Layout
instance, it will still be copied and a copy will be returned. This is because graph drawers are allowed to transform the layout for their purposes, and we don't want the transformation to propagate back to the caller.
igraph.drawing.cairo.graph.CairoGraphDrawer
, igraph.drawing.graph.CytoscapeGraphDrawer
, igraph.drawing.graph.GephiGraphStreamingDrawer
, igraph.drawing.matplotlib.graph.MatplotlibGraphDrawer
, igraph.drawing.plotly.graph.PlotlyGraphDrawer