class documentation
class MatplotlibDendrogramDrawer(AbstractDrawer):
Matplotlib drawer object for dendrograms.
| Method | __init__ |
Constructs the drawer and associates it to the given Axes. |
| Method | draw |
Draws the given Dendrogram in a matplotlib Axes. |
| Instance Variable | context |
Undocumented |
| Method | _plot |
Plots a dendrogram item to the given Cairo context |
Constructs the drawer and associates it to the given Axes.
| Parameters | |
| ax | the Axes on which we will draw |
Draws the given Dendrogram in a matplotlib Axes.
Other keyword arguments are passed to mpl.patches.Polygon.
| Parameters | |
| dendro | the igraph.Dendrogram to plot. |
| orientation | Undocumented |
| **kwds | Undocumented |
| Unknown Field: orientation | |
the direction of the plot. Accepted values are "lr" (root on the right), "rl" (root on the left), "tb" (root at the bottom), and "bt" (root at the top). A few aliases are available (see utils.str_to_orientation). | |