circuitree.viz.plot_complexity

circuitree.viz.plot_complexity(tree: CircuiTree, complexity: dict[str, int] | None = None, pos: dict[str, tuple[float, float]] | None = None, vlim: tuple[int | float] = (None, None), vscale: Literal['log', 'lin', 'flat'] = 'flat', figsize: tuple[float, float] = (6, 3), alpha: float = 0.25, lw: float = 1.0, complexity_labels: bool = True, plot_layers_as_blocks: bool = True, block_height: float = 0.075, block_clr: str = 'lightsteelblue', marker_clr: str = 'k', marker_size: float = 10, n_to_highlight: float | None = None, highlight_min_visits: int = 1, highlight_clr: str = 'tab:orange', fig: Figure | None = None, ax: Axes | None = None, **kwargs) None