Skip to content

dyce.viz package reference

dyce.viz provides optional, basic Matplotlib-based visualization utilities. Its requirements can be installed via the viz optional dependency group.

1
2
3
pip install 'dyce[viz]'
# or
uv sync --group viz
1
2
3
4
5
<!-- BEGIN MONKEY PATCH --
>>> from typing import Any
>>> _: Any

  -- END MONKEY PATCH -->

BurstFormatterT = Callable[[_T, Fraction, H[_T]], str] module-attribute

Callable type for burst-plot wedge labels.

Called as formatter(outcome, probability, histogram). Return an empty string to suppress the label for that wedge.

GraphTypeT = Literal['normal', 'at_most', 'at_least'] module-attribute

Controls which variant of the distribution is plotted.

  • "normal": raw probability for each outcome
  • "at_most": cumulative probability \(P(X \le k)\)
  • "at_least": survival probability \(P(X \ge k)\)

format_outcome_name(outcome: _T, _prob: Fraction, _h: H[_T]) -> str

Experimental

dyce.viz.format_outcome_name is experimental; its interface may change or it may be removed in a future release.

Burst-plot formatter that labels each wedge with its outcome. If outcome has a .name attribute (e.g. an Enum), that is used; otherwise str(outcome) is used.

Source code in dyce/viz.py
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
@experimental
def format_outcome_name(
    outcome: _T,
    _prob: Fraction,
    _h: H[_T],
) -> str:
    r"""
    Burst-plot formatter that labels each wedge with its outcome.
    If *outcome* has a `#!python .name` attribute (e.g. an `#!python Enum`), that is used; otherwise `#!python str(outcome)` is used.
    """
    return str(outcome.name) if hasattr(outcome, "name") else str(outcome)  # pyright: ignore[reportAttributeAccessIssue]

format_outcome_name_probability(outcome: _T, prob: Fraction, h: H[_T]) -> str

Experimental

dyce.viz.format_outcome_name_probability is experimental; its interface may change or it may be removed in a future release.

Burst-plot formatter that labels each wedge with both its outcome and probability. If outcome has a .name attribute (e.g. an Enum), that is used; otherwise str(outcome) is used.

Source code in dyce/viz.py
109
110
111
112
113
114
115
116
117
118
119
120
@experimental
def format_outcome_name_probability(
    outcome: _T,
    prob: Fraction,
    h: H[_T],
) -> str:
    r"""
    Burst-plot formatter that labels each wedge with both its outcome and probability.
    If *outcome* has a `#!python .name` attribute (e.g. an `#!python Enum`), that is used; otherwise `#!python str(outcome)` is used.
    """
    name = format_outcome_name(outcome, prob, h)
    return f"{name}\n{format_probability(outcome, prob, h)}"

format_probability(_outcome: _T, prob: Fraction, _h: H[_T]) -> str

Experimental

dyce.viz.format_probability is experimental; its interface may change or it may be removed in a future release.

Burst-plot formatter that labels each wedge with its probability as a percentage.

Source code in dyce/viz.py
126
127
128
129
130
131
132
133
134
135
@experimental
def format_probability(
    _outcome: _T,
    prob: Fraction,
    _h: H[_T],
) -> str:
    r"""
    Burst-plot formatter that labels each wedge with its probability as a percentage.
    """
    return f"{float(prob):.2%}"

plot_bar(*hs: H, alpha: float = _DEFAULT_ALPHA, ax: Axes | None = None, graph_type: GraphTypeT = 'normal', horizontal: bool = False, labels: Sequence[str] = ()) -> Axes

Experimental

dyce.viz.plot_bar is experimental; its interface may change or it may be removed in a future release.

Plots a grouped bar chart of one or more histograms.

Pass one or more H instances as positional arguments. Use labels to assign names to each histogram; unmatched histograms receive an empty label. When multiple histograms are provided, bars are interleaved side-by-side.

graph_type controls which variant of the distribution is plotted (see GraphTypeT). When horizontal is True, bars are drawn horizontally with outcomes on the y-axis and probabilities on the x-axis.

If ax is None, matplotlib.pyplot.gca() is used. Returns the axes so the caller can further customise the plot.

1
2
3
4
5
6
7
8
9
>>> from dyce import H
>>> from dyce.viz import plot_bar
>>> ax = plot_bar(
...     2 @ H(6),
...     H(12),
...     labels=["2d6", "d12"],
... )
>>> _ = ax.set_title("2d6 vs. d12")
>>> _ = ax.legend(loc="upper right")

Plot: 2d6 vs. d12, vertically and horizontally

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
>>> from dyce import H
>>> from dyce.viz import plot_bar
>>> ax = plot_bar(
...     2 @ H(6),
...     H(12),
...     labels=["2d6", "d12"],
...     horizontal=True,
... )
>>> _ = ax.set_title("2d6 vs. d12")
>>> _ = ax.legend(loc="upper right")

Plot: 2d6 vs. d12, vertically and horizontally

Source code in dyce/viz.py
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
@experimental
def plot_bar(
    *hs: H,
    alpha: float = _DEFAULT_ALPHA,
    ax: Axes | None = None,
    graph_type: GraphTypeT = "normal",
    horizontal: bool = False,
    labels: Sequence[str] = (),
) -> Axes:
    r"""
    Plots a grouped bar chart of one or more histograms.

    Pass one or more [`H`][dyce.H] instances as positional arguments.
    Use *labels* to assign names to each histogram; unmatched histograms receive an empty label.
    When multiple histograms are provided, bars are interleaved side-by-side.

    *graph_type* controls which variant of the distribution is plotted (see `GraphTypeT`).
    When *horizontal* is `#!python True`, bars are drawn horizontally with outcomes on the y-axis and probabilities on the x-axis.

    If *ax* is `#!python None`, `#!python matplotlib.pyplot.gca()` is used.
    Returns the axes so the caller can further customise the plot.

    <!-- BEGIN MONKEY PATCH --
    >>> import warnings
    >>> from dyce.lifecycle import ExperimentalWarning
    >>> warnings.filterwarnings("ignore", category=ExperimentalWarning)
    >>> import matplotlib as mpl
    >>> mpl.use("Agg")

      -- END MONKEY PATCH -->

    === "Vertical bars (default)"

            >>> from dyce import H
            >>> from dyce.viz import plot_bar
            >>> ax = plot_bar(
            ...     2 @ H(6),
            ...     H(12),
            ...     labels=["2d6", "d12"],
            ... )
            >>> _ = ax.set_title("2d6 vs. d12")
            >>> _ = ax.legend(loc="upper right")

        <picture>
            <source media="(prefers-color-scheme: dark)" srcset="../assets/plot_viz_plot_bar_dark.svg">
            <source media="(prefers-color-scheme: light)" srcset="../assets/plot_viz_plot_bar_light.svg">
            <img alt="Plot: 2d6 vs. d12, vertically and horizontally" src="../assets/plot_viz_plot_bar_light.svg">
        </picture>

    === "Horizontal bars (`horizontal=True`)"

            >>> from dyce import H
            >>> from dyce.viz import plot_bar
            >>> ax = plot_bar(
            ...     2 @ H(6),
            ...     H(12),
            ...     labels=["2d6", "d12"],
            ...     horizontal=True,
            ... )
            >>> _ = ax.set_title("2d6 vs. d12")
            >>> _ = ax.legend(loc="upper right")

        <picture>
            <source media="(prefers-color-scheme: dark)" srcset="../assets/plot_viz_plot_hbar_dark.svg">
            <source media="(prefers-color-scheme: light)" srcset="../assets/plot_viz_plot_hbar_light.svg">
            <img alt="Plot: 2d6 vs. d12, vertically and horizontally" src="../assets/plot_viz_plot_hbar_light.svg">
        </picture>

    <!-- BEGIN MONKEY PATCH --
    >>> warnings.resetwarnings()

       -- END MONKEY PATCH -->
    """
    hs_list = _labeled_hs(hs, labels)
    ax = _get_ax(ax)

    pct_formatter = mticker.PercentFormatter(xmax=1)
    if horizontal:
        ax.xaxis.set_major_formatter(pct_formatter)
    else:
        ax.yaxis.set_major_formatter(pct_formatter)

    if not hs_list:
        return ax

    unique_outcomes = _sorted_outcomes(hs_list)
    n = len(hs_list)
    bar_width = 0.8 / n

    if unique_outcomes:
        try:
            lo, hi = min(unique_outcomes), max(unique_outcomes)
            if horizontal:
                ax.set_yticks(unique_outcomes)
                ax.set_ylim(lo - 1.0, hi + 1.0)
            else:
                ax.set_xticks(unique_outcomes)
                ax.set_xlim(lo - 1.0, hi + 1.0)
        except TypeError:  # pragma: no cover
            pass  # non-comparable outcomes: matplotlib handles categorical axes

    for i, (label, h) in enumerate(hs_list):
        outcomes, probs = _values_for_graph_type(h, graph_type)
        offsets = [o + (i + 0.5) * bar_width - 0.4 for o in outcomes]
        if horizontal:
            ax.barh(offsets, probs, height=bar_width, label=label or None, alpha=alpha)
        else:
            ax.bar(offsets, probs, width=bar_width, label=label or None, alpha=alpha)

    return ax

plot_burst(h: H[_T1], compare: H[_T2] | None = None, *, formatter: BurstFormatterT[_T1] | BurstFormatterT[_T1 | _T2] = format_outcome_name, compare_formatter: BurstFormatterT[_T2] | None = None, alpha: float = _DEFAULT_ALPHA, ax: Axes | None = None, cmap: str | Colormap | None = None, compare_cmap: str | Colormap | None = None, title: str = '', use_midpoints_for_colors: bool = True) -> Axes

plot_burst(
    h: H[_T1],
    compare: None = None,
    *,
    formatter: BurstFormatterT[_T1] = format_outcome_name,
    compare_formatter: BurstFormatterT[_T1] | None = None,
    alpha: float = _DEFAULT_ALPHA,
    ax: Axes | None = None,
    cmap: str | Colormap | None = None,
    compare_cmap: str | Colormap | None = None,
    title: str = "",
    use_midpoints_for_colors: bool = True,
) -> Axes
plot_burst(
    h: H[_T1],
    compare: H[_T2],
    *,
    formatter: BurstFormatterT[_T1] = format_outcome_name,
    compare_formatter: BurstFormatterT[_T2],
    alpha: float = _DEFAULT_ALPHA,
    ax: Axes | None = None,
    cmap: str | Colormap | None = None,
    compare_cmap: str | Colormap | None = None,
    title: str = "",
    use_midpoints_for_colors: bool = True,
) -> Axes
plot_burst(
    h: H[_T1],
    compare: H[_T2],
    *,
    formatter: BurstFormatterT[
        _T1 | _T2
    ] = format_outcome_name,
    compare_formatter: None = None,
    alpha: float = _DEFAULT_ALPHA,
    ax: Axes | None = None,
    cmap: str | Colormap | None = None,
    compare_cmap: str | Colormap | None = None,
    title: str = "",
    use_midpoints_for_colors: bool = True,
) -> Axes
plot_burst(
    h: H[_T1],
    compare: H[_T2],
    *,
    formatter: BurstFormatterT[_T1] = format_outcome_name,
    compare_formatter: BurstFormatterT[_T2] | None = None,
    alpha: float = _DEFAULT_ALPHA,
    ax: Axes | None = None,
    cmap: str | Colormap | None = None,
    compare_cmap: str | Colormap | None = None,
    title: str = "",
    use_midpoints_for_colors: bool = True,
) -> Axes

Experimental

dyce.viz.plot_burst is experimental; its interface may change or it may be removed in a future release.

Plots a dual concentric pie chart for one or two histograms.

The inner ring represents h and the outer ring represents compare. When compare is None (the default), both rings show the same histogram: the inner ring labels outcomes (via formatter) and the outer ring labels probabilities. When compare differs from h, both rings default to labelling outcomes This is useful for comparing two related distributions side-by-side in a single visual.

Wedge labels are suppressed when the probability is below Fraction(1, 32) (~3.1%) to avoid clutter.

formatter and compare_formatter are BurstFormatterT callables (see format_outcome_name, format_probability, format_outcome_name_probability).

cmap / compare_cmap accept any matplotlib colormap name or instance. If None, the "image.cmap" associated with the current style is used.

If ax is None, matplotlib.pyplot.gca() is used. Returns the axes so the caller can further customise the plot.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
>>> from dyce import H
>>> from dyce.viz import plot_burst
>>> from matplotlib import pyplot as plt
>>> ax_d6 = plt.subplot2grid((1, 2), (0, 0))
>>> _ = plot_burst(H(6), ax=ax_d6)
>>> _ = ax_d6.set_title("d6")
>>> ax_2d6_vs_d12 = plt.subplot2grid((1, 2), (0, 1))
>>> _ = plot_burst(
...     2 @ H(6),
...     H(12),
...     ax=ax_2d6_vs_d12,
... )
>>> _ = ax_2d6_vs_d12.set_title("2d6 vs. d12")

Plot: 2d6 vs. d12

Source code in dyce/viz.py
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
@experimental
def plot_burst(
    h: H[_T1],
    compare: H[_T2] | None = None,
    *,
    formatter: BurstFormatterT[_T1] | BurstFormatterT[_T1 | _T2] = format_outcome_name,
    compare_formatter: BurstFormatterT[_T2] | None = None,
    alpha: float = _DEFAULT_ALPHA,
    ax: Axes | None = None,
    cmap: str | Colormap | None = None,
    compare_cmap: str | Colormap | None = None,
    title: str = "",
    use_midpoints_for_colors: bool = True,
) -> Axes:
    r"""
    Plots a dual concentric pie chart for one or two histograms.

    The inner ring represents *h* and the outer ring represents *compare*.
    When *compare* is `#!python None` (the default), both rings show the same histogram: the inner ring labels outcomes (via *formatter*) and the outer ring labels probabilities.
    When *compare* differs from *h*, both rings default to labelling outcomes
    This is useful for comparing two related distributions side-by-side in a single visual.

    Wedge labels are suppressed when the probability is below `#!python Fraction(1, 32)` (~3.1%) to avoid clutter.

    *formatter* and *compare_formatter* are `BurstFormatterT` callables (see `format_outcome_name`, `format_probability`, `format_outcome_name_probability`).

    *cmap* / *compare_cmap* accept any matplotlib colormap name or instance.
    If `#!python None`, the `#!python "image.cmap"` associated with the current style is used.

    If *ax* is `#!python None`, `#!python matplotlib.pyplot.gca()` is used.
    Returns the axes so the caller can further customise the plot.

    <!-- BEGIN MONKEY PATCH --
    >>> import warnings
    >>> from dyce.lifecycle import ExperimentalWarning
    >>> warnings.filterwarnings("ignore", category=ExperimentalWarning)
    >>> import matplotlib as mpl
    >>> mpl.use("Agg")

      -- END MONKEY PATCH -->

        >>> from dyce import H
        >>> from dyce.viz import plot_burst
        >>> from matplotlib import pyplot as plt
        >>> ax_d6 = plt.subplot2grid((1, 2), (0, 0))
        >>> _ = plot_burst(H(6), ax=ax_d6)
        >>> _ = ax_d6.set_title("d6")
        >>> ax_2d6_vs_d12 = plt.subplot2grid((1, 2), (0, 1))
        >>> _ = plot_burst(
        ...     2 @ H(6),
        ...     H(12),
        ...     ax=ax_2d6_vs_d12,
        ... )
        >>> _ = ax_2d6_vs_d12.set_title("2d6 vs. d12")

    <!-- BEGIN MONKEY PATCH --
    >>> warnings.resetwarnings()

       -- END MONKEY PATCH -->

    <picture>
        <source media="(prefers-color-scheme: dark)" srcset="../assets/plot_viz_plot_burst_dark.svg">
        <source media="(prefers-color-scheme: light)" srcset="../assets/plot_viz_plot_burst_light.svg">
        <img alt="Plot: 2d6 vs. d12" src="../assets/plot_viz_plot_burst_light.svg">
    </picture>
    """
    ax = _get_ax(ax)

    h_compare = cast("H[_T2]", h if compare is None else compare)
    if compare_formatter is None:
        compare_formatter = cast(
            "BurstFormatterT[_T2]", format_probability if compare is None else formatter
        )

    def _wedges(
        hist: H[_T], fmt: BurstFormatterT[_T]
    ) -> tuple[tuple[str, ...], tuple[float, ...]]:
        labels_list: list[str] = []
        probs_list: list[float] = []
        for outcome, probability in hist.probability_items():
            label = fmt(outcome, probability, hist) if probability >= _LABEL_LIM else ""
            labels_list.append(label)
            probs_list.append(float(probability))
        return tuple(labels_list), tuple(probs_list)

    inner_labels, inner_probs = _wedges(h, formatter)
    outer_labels, outer_probs = _wedges(h_compare, compare_formatter)

    cmap = mpl.rcParams["image.cmap"] if cmap is None else cmap
    assert cmap is not None
    compare_cmap = mpl.rcParams["image.cmap"] if compare_cmap is None else compare_cmap
    assert compare_cmap is not None
    inner_colors = _burst_colors(
        cmap, inner_probs, alpha, use_midpoints=use_midpoints_for_colors
    )
    outer_colors = _burst_colors(
        compare_cmap, outer_probs, alpha, use_midpoints=use_midpoints_for_colors
    )

    if title:
        ax.set_title(title, fontweight="bold", pad=24.0)

    ax.pie(
        outer_probs,
        labels=outer_labels,
        radius=1.0,
        labeldistance=1.15,
        startangle=90,
        colors=outer_colors,
        wedgeprops={"width": 0.8},
    )
    ax.pie(
        inner_probs,
        labels=inner_labels,
        radius=0.85,
        labeldistance=0.7,
        startangle=90,
        colors=inner_colors,
        wedgeprops={"width": 0.5},
    )
    ax.set(aspect="equal")

    return ax

plot_line(*hs: H, alpha: float = _DEFAULT_ALPHA, ax: Axes | None = None, graph_type: GraphTypeT = 'normal', labels: Sequence[str] = (), markers: str = _DEFAULT_MARKERS) -> Axes

Experimental

dyce.viz.plot_line is experimental; its interface may change or it may be removed in a future release.

Plots a line graph of one or more histograms.

Pass one or more H instances as positional arguments. Use labels to assign names to each histogram; unmatched histograms receive an empty label. markers is a string whose characters are cycled across histograms (e.g. "oX^" produces circle, cross, triangle, circle, …).

graph_type controls which variant of the distribution is plotted (see GraphTypeT).

If ax is None, matplotlib.pyplot.gca() is used. Returns the axes so the caller can further customise the plot.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
>>> from dyce import H
>>> from dyce.viz import plot_line
>>> ax = plot_line(
...     2 @ H(6),
...     H(12),
...     graph_type="at_most",
...     labels=["2d6", "d12"],
... )
>>> _ = ax.set_title("2d6 vs. d12")
>>> _ = ax.legend(loc="upper left")

Plot: d6 and 2d6 vs. d12

Source code in dyce/viz.py
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
@experimental
def plot_line(
    *hs: H,
    alpha: float = _DEFAULT_ALPHA,
    ax: Axes | None = None,
    graph_type: GraphTypeT = "normal",
    labels: Sequence[str] = (),
    markers: str = _DEFAULT_MARKERS,
) -> Axes:
    r"""
    Plots a line graph of one or more histograms.

    Pass one or more [`H`][dyce.H] instances as positional arguments.
    Use *labels* to assign names to each histogram; unmatched histograms receive an empty label.
    *markers* is a string whose characters are cycled across histograms (e.g. `#!python "oX^"` produces circle, cross, triangle, circle, …).

    *graph_type* controls which variant of the distribution is plotted (see `GraphTypeT`).

    If *ax* is `#!python None`, `#!python matplotlib.pyplot.gca()` is used.
    Returns the axes so the caller can further customise the plot.

    <!-- BEGIN MONKEY PATCH --
    >>> import warnings
    >>> from dyce.lifecycle import ExperimentalWarning
    >>> warnings.filterwarnings("ignore", category=ExperimentalWarning)
    >>> import matplotlib as mpl
    >>> mpl.use("Agg")

      -- END MONKEY PATCH -->

        >>> from dyce import H
        >>> from dyce.viz import plot_line
        >>> ax = plot_line(
        ...     2 @ H(6),
        ...     H(12),
        ...     graph_type="at_most",
        ...     labels=["2d6", "d12"],
        ... )
        >>> _ = ax.set_title("2d6 vs. d12")
        >>> _ = ax.legend(loc="upper left")

    <!-- BEGIN MONKEY PATCH --
    >>> warnings.resetwarnings()

       -- END MONKEY PATCH -->

    <picture>
        <source media="(prefers-color-scheme: dark)" srcset="../assets/plot_viz_plot_line_dark.svg">
        <source media="(prefers-color-scheme: light)" srcset="../assets/plot_viz_plot_line_light.svg">
        <img alt="Plot: d6 and 2d6 vs. d12" src="../assets/plot_viz_plot_line_light.svg">
    </picture>
    """
    hs_list = _labeled_hs(hs, labels)
    ax = _get_ax(ax)
    ax.yaxis.set_major_formatter(mticker.PercentFormatter(xmax=1))

    if not hs_list:
        return ax

    unique_outcomes = _sorted_outcomes(hs_list)

    if unique_outcomes:
        try:
            lo, hi = min(unique_outcomes), max(unique_outcomes)
            ax.set_xticks(unique_outcomes)
            ax.set_xlim(lo - 0.5, hi + 0.5)
        except TypeError:  # pragma: no cover
            pass  # non-comparable outcomes: matplotlib handles categorical axes

    markers_cycle_forever = cycle(markers or " ")
    for (label, h), marker in zip(hs_list, markers_cycle_forever, strict=False):
        outcomes, probs = _values_for_graph_type(h, graph_type)
        ax.plot(outcomes, probs, label=label or None, marker=marker, alpha=alpha)

    return ax