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 | |
1 2 3 4 5 | |
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 | |
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 | |
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 | |
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 | |
1 2 3 4 5 6 7 8 9 10 | |
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 | |
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 | |
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 | |
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 | |
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 | |