class documentation

class MatplotlibMatrixDrawer(AbstractDrawer): (source)

Constructor: MatplotlibMatrixDrawer(ax)

View In Hierarchy

Matplotlib drawer object for matrices.

Method __init__ Constructs the drawer and associates it to the given Axes.
Method draw Draws the given Matrix in a matplotlib Axes.
Instance Variable context Undocumented
def __init__(self, ax): (source)

Constructs the drawer and associates it to the given Axes.

Parameters
axthe Axes on which we will draw
def draw(self, matrix, **kwds): (source)

Draws the given Matrix in a matplotlib Axes.

Parameters
matrix

the igraph.Matrix to plot.

Keyword arguments are passed to Axes.imshow.

**kwdsUndocumented

Undocumented