API: visualization¶
viz
¶
Counterfactual visualizations. matplotlib lives behind the [viz] extra.
plot_changes
¶
plot_changes(cf: Counterfactual, ax: Any = None) -> Any
Dumbbell chart of per-feature changes (from -> to); NaN transitions annotated.
One row per changed feature, a gray dot at the factual value and a blue
dot at the counterfactual value joined by a line; a feature that
transitions to or from NaN is drawn as a single gray dot annotated
"-> NaN"/"NaN ->" instead.
| PARAMETER | DESCRIPTION |
|---|---|
cf
|
The counterfactual to plot.
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the chart was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
Source code in src/treecf/viz.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | |
plot_counterfactuals
¶
plot_counterfactuals(
results: Sequence[Counterfactual], ax: Any = None
) -> Any
Changed-feature matrix comparing diverse counterfactuals.
One row per result, one column per feature changed by any of them; a
filled cell marks that the row's plan changed that column's feature.
Rows are labeled by rank and distance (#1 (J=...), ...), in the order
results is given.
| PARAMETER | DESCRIPTION |
|---|---|
results
|
The counterfactuals to compare (e.g. the
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the matrix was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
Source code in src/treecf/viz.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | |
plot_ladder
¶
plot_ladder(
bands_result: Mapping[str, object], ax: Any = None
) -> Any
Cost of reaching each rating band (Target.bands): the price of every grade.
One bar per band, named and ordered like bands_result; a
Counterfactual bar is its distance, an Infeasible band is
drawn at zero height and labeled "infeasible".
| PARAMETER | DESCRIPTION |
|---|---|
bands_result
|
The dict returned by
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the chart was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
Source code in src/treecf/viz.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 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 | |
plot_alternatives
¶
plot_alternatives(
results: Any, explainer: Any = None, ax: Any = None
) -> Any
Overlaid dumbbells: every alternative plan's changes for one instance.
Accepts a sequence of Counterfactual objects or feasible
BatchRecord entries, or a mapping of outcomes as returned by
explain_coalitions (keys become legend labels; Infeasible values
are skipped). Each plan keeps one color across all its changes — meant
for a handful of alternatives for the same row (at most 10). With
explainer, changes are plotted as standardized deltas from the
factual (Δ/σ), so features of different scales share one axis; without,
raw values are shown with gray factual dots.
| PARAMETER | DESCRIPTION |
|---|---|
results
|
The plans to overlay — a sequence, or a mapping keyed by plan name; see above for accepted element types.
TYPE:
|
explainer
|
When given, changes are standardized by its per-feature
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the chart was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz.py
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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | |
plot_tradeoff
¶
plot_tradeoff(
results: Any, target: Any = None, ax: Any = None
) -> Any
Cost vs achieved score for alternative plans of one instance.
One dot per plan: x = distance J, y = the achieved probability (sigmoid
models) or raw score. target draws the interval bounds the plans had
to reach. Accepts a sequence of Counterfactual objects or feasible
BatchRecord entries, or a mapping as returned by
explain_coalitions (keys label the dots; Infeasible skipped).
| PARAMETER | DESCRIPTION |
|---|---|
results
|
The plans to plot; see above for accepted shapes.
TYPE:
|
target
|
When given, draws the target interval's finite bounds (mapped into the same probability/raw space as the plans) as horizontal reference lines.
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the chart was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz.py
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | |
plot_recourse_map
¶
plot_recourse_map(
explainer: Any,
x: Any,
results: Any,
target: Any,
*,
ax: Any = None,
space: str = "auto",
annotate: bool = True,
max_changes_per_label: int = 3,
fmt: str = "{:.3g}",
schematic: bool = False,
region_labels: tuple[str, str] = ("Reject", "Accept"),
show_factual_label: bool = True,
) -> Any
Recourse diagram: what each plan costs and where it lands relative to the target.
Plots one point per feasible plan in results at (model output, recourse
cost J), with the factual instance drawn as a red dot at cost 0 and an
arrow from the factual to each plan. A green band marks the target
interval on the model-output axis; the axis flips automatically so that
"improving" always reads as a move toward the band. Model output is shown
as a probability for sigmoid-link models (or when space="probability")
and as the raw score otherwise (space="raw"; space="auto" picks
based on the model's link function).
In the default quantitative view, each plan is labeled with one line —
its name (or "plan {i}", ascending by distance, when unnamed) and its
cost — when annotate is set; the map's job here is the overview, not
a change list. Infeasible entries in results are drawn as grey
markers above the plans, labeled by name ("infeasible" alone when
unlabeled, with a (certified) suffix when the entry carries a
certified proof) regardless of annotate.
schematic=True swaps the quantitative axes and target band for a
slide-friendly rendering: a wavy decision-boundary line instead of a
band, no ticks or axis labels, and "If ..." phrased plan labels (using
each plan's changed features, largest-effort first, truncated to
max_changes_per_label and formatted with fmt). annotate also
gates show_factual_label there — an anchored corner box on the
factual's screen side listing the features any plan changed, at their
original values (schematic mode only; the quantitative view never draws
it). region_labels names the two sides of the boundary in
schematic mode.
| PARAMETER | DESCRIPTION |
|---|---|
explainer
|
Explainer wrapping the model; supplies the link function and the counterfactual distance weights used to order each plan's changes.
TYPE:
|
x
|
Factual feature vector.
TYPE:
|
results
|
Counterfactual outcomes for
TYPE:
|
target
|
The target interval the plans were solved against; also drawn as the band (or boundary, in schematic mode).
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
space
|
TYPE:
|
annotate
|
Draw a text label at each plan's point; in
TYPE:
|
max_changes_per_label
|
Schematic mode only. Number of changed features shown per label before truncating to "(+k more)".
TYPE:
|
fmt
|
Schematic mode only. Format string for changed feature values in labels.
TYPE:
|
schematic
|
Render the slide-friendly boundary view instead of the quantitative axes.
TYPE:
|
region_labels
|
The (reject-side, accept-side) names drawn next to the boundary in schematic mode.
TYPE:
|
show_factual_label
|
Schematic mode only. Draw an anchored corner box, on the factual's screen side, listing the features any plan changed.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the recourse map was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz.py
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 433 434 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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 | |
plot_waterfall
¶
plot_waterfall(
explainer: Any,
cf: Counterfactual,
target: Any = None,
ax: Any = None,
) -> Any
SHAP-style waterfall: exact score deltas of the counterfactual's changes.
Starts at the factual score, applies the changes one at a time (largest single effect first), each bar being the EXACT score delta from that change (recomputed through the IR — endpoints are exact; per-bar attribution is sequential and therefore order-dependent, like any sequential decomposition). Sigmoid-link models are plotted in probability space.
| PARAMETER | DESCRIPTION |
|---|---|
explainer
|
Explainer wrapping the model; supplies the IR the score deltas are recomputed through and the link function.
TYPE:
|
cf
|
The counterfactual to decompose.
TYPE:
|
target
|
When given, draws the target interval's finite bounds (in the same display space) as vertical reference lines.
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the waterfall was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
Source code in src/treecf/viz.py
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 | |
plot_effort
¶
plot_effort(
explainer: Any, cf: Counterfactual, ax: Any = None
) -> Any
Cost-space companion: how the distance J splits across the changes.
One horizontal bar per changed feature, its length the feature's own
contribution w * |delta| / sigma to cf.distance (a NaN transition
priced via AllowMissing's delta_miss/delta_from_miss),
descending. Unlike plot_waterfall's exact score deltas, this
decomposes the recourse cost, not the model score.
| PARAMETER | DESCRIPTION |
|---|---|
explainer
|
Explainer wrapping the model; supplies the distance weights and normalizers each contribution is computed from.
TYPE:
|
cf
|
The counterfactual to decompose.
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the chart was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
Source code in src/treecf/viz.py
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 | |
plot_recourse_menu
¶
plot_recourse_menu(
menu: Any,
*,
ax: Any = None,
order: str = "cost",
max_rows: int = 25,
annotate: bool = True,
explainer: Any = None,
) -> Any
Lever-set by feature matrix of a recourse menu.
One row per menu entry — in the menu's own order (minimal frontier
first) when order="cost", by set size then key when
order="size" — followed by the unresolved sets, and one column per
candidate lever. A filled cell marks a feature the plan changed, shaded
by the size of the change: |Δ|/σ when explainer is given
(categorical levers hatched), otherwise |Δ| relative to the largest
change of that lever across the menu. The row label carries the plan
cost, and a glyph before it the proof: filled square optimal, half
square optimal_within_gap, open square heuristic, cross
certified infeasible, dot search_exhausted, question mark
unresolved. A DiverseSet built from a menu renders through it.
| PARAMETER | DESCRIPTION |
|---|---|
menu
|
A
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
order
|
TYPE:
|
max_rows
|
Rows drawn before the rest is cut; the title says how many of the total are shown.
TYPE:
|
annotate
|
Write each changed feature's new value in its cell.
TYPE:
|
explainer
|
The explainer the menu came from, for sigma-scaled shading and categorical hatching; optional.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the matrix was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If a |
ValueError
|
If |
Source code in src/treecf/viz.py
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 | |
plot_region
¶
plot_region(
explainer: Any,
x: Any,
result: Any,
*,
ax: Any = None,
units: str = "sigma",
order: str = "index",
annotate: bool = True,
fmt: str = "{:.3g}",
max_features: int | None = None,
) -> Any
Per-feature view of a certified recourse region: how far each value can move while staying certified, and what stopped it.
Each widened numeric feature draws its certified interval as a thick bar
(units="sigma": one shared axis in sigma-units from the factual, so
every factual sits at 0; units="raw": small multiples, one strip per
feature on its own scale). The factual is a hollow circle, the
counterfactual a filled marker, and the instance bounds faint whiskers. A
finite bar end carries a cap saying what limited it: a bracket where the
end coincides with an instance bound (a constraint stopped it), a plain
tick where the model's own routing did; an infinite end runs to the axis
edge with an open arrow. Categorical features draw one tile per category
code — filled when certified, outlined at the factual's code, marked at
the counterfactual's, hatched where a declared allowed set excludes the
code; the tiles are nominal, so their positions carry no meaning. The
legend records that the region is certified but not necessarily maximal.
| PARAMETER | DESCRIPTION |
|---|---|
explainer
|
The explainer that produced the result (bounds, normalizers, names).
TYPE:
|
x
|
The factual row the region is anchored at.
TYPE:
|
result
|
A result carrying
TYPE:
|
ax
|
Target axes for
TYPE:
|
units
|
Shared sigma-unit axis, or per-feature raw-value strips.
TYPE:
|
order
|
Row order: ascending feature index, or descending cost contribution.
TYPE:
|
annotate
|
Annotate raw values at the bar ends.
TYPE:
|
fmt
|
Format string for annotations.
TYPE:
|
max_features
|
Cap on rows; the rest are summarized as
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
matplotlib axes, or an array of axes for ``units="raw"``.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If the result carries no region, or an argument is unrecognized. |
Source code in src/treecf/viz.py
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 | |
plot_certification_trace
¶
plot_certification_trace(
result: Any, *, ax: Any = None
) -> Any
How an exact search's proof formed: incumbent and lower bound over nodes.
Reads solver_stats["trace"] — the samples the exact backend takes at
every incumbent update and every power-of-two node count — and draws the
incumbent cost (what has been found) and the lower bound (what can still
be ruled out) against the nodes expanded on a log axis, with the gap
between them shaded. The terminal marker names the outcome: optimal,
within gap, certified infeasible, or stopped early for a
search that ran out of budget or withdrew its claim (the solve-time
warning says which).
| PARAMETER | DESCRIPTION |
|---|---|
result
|
A
TYPE:
|
ax
|
Axes to draw on; a new figure is created when omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The matplotlib ``Axes`` drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz.py
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 | |
viz_batch
¶
Batch-level counterfactual visualizations. matplotlib lives behind the [viz] extra.
Every function consumes a BatchResult. k=0 (the default) keeps each
row's best plan; k=None keeps every feasible plan, so shares are per plan,
not per row.
plot_batch_levers
¶
plot_batch_levers(
batch: BatchResult,
k: int | None = 0,
normalize: bool = True,
top_n: int = 20,
show_essential: bool = True,
ax: Any = None,
) -> Any
Horizontal stacked bars: share of plans changing each feature, by direction.
Increases, decreases, and NaN transitions stack per feature, ordered by how
often the feature is used. For diversity="lever-blocking" results,
features recorded as essential levers are annotated with their count.
| PARAMETER | DESCRIPTION |
|---|---|
batch
|
The batch result to summarize.
TYPE:
|
k
|
Which plan(s) to include per row —
TYPE:
|
normalize
|
When
TYPE:
|
top_n
|
Maximum number of features to show, most-used first.
TYPE:
|
show_essential
|
When
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the chart was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz_batch.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | |
plot_batch_matrix
¶
plot_batch_matrix(
batch: BatchResult,
explainer: Any = None,
k: int | None = 0,
sort_rows: bool = True,
max_row_labels: int = 30,
ax: Any = None,
) -> Any
Plans × features heatmap: binary changes, or effort-shaded with an explainer.
With explainer, each cell shows the change's effort w·|Δ|/σ (NaN
legs priced via AllowMissing); without, cells mark changed features
like plot_counterfactuals. Rows sort by distance; columns by how often
the feature is changed.
| PARAMETER | DESCRIPTION |
|---|---|
batch
|
The batch result to visualize.
TYPE:
|
explainer
|
When given, shades cells by change effort instead of a
flat binary mark; must describe the same feature space as
TYPE:
|
k
|
Which plan(s) to include per row —
TYPE:
|
sort_rows
|
When
TYPE:
|
max_row_labels
|
Row id labels are drawn only when the selected plan count is at or below this limit; beyond it, the y-axis is left unlabeled with a plan-count caption instead.
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the heatmap was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz_batch.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 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 | |
plot_batch_summary
¶
plot_batch_summary(
batch: BatchResult, k: int | None = 0, axs: Any = None
) -> Any
Three-panel batch overview: plan cost, sparsity, and feasibility.
Creates its own figure when axs is None and returns the array of three
axes (unlike the single-axes functions, which return one ax). Panels:
a histogram of distance over the selected plans, a bar chart of
n_changed counts, and a feasible-vs-infeasible bar over every row
(independent of k — every row counts once).
| PARAMETER | DESCRIPTION |
|---|---|
batch
|
The batch result to summarize.
TYPE:
|
k
|
Which plan(s) feed the cost/sparsity panels —
TYPE:
|
axs
|
Existing array of 3 axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The array of 3 axes (cost, sparsity, feasibility) the panels were
|
|
drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz_batch.py
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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | |
plot_batch_deltas
¶
plot_batch_deltas(
batch: BatchResult,
explainer: Any = None,
k: int | None = 0,
top_n: int = 10,
ax: Any = None,
) -> Any
Strip plot of actual deltas (to − from) per feature, top-N most-changed.
One jittered dot per plan, a median tick per feature; NaN transitions are
counted in a per-feature annotation instead of plotted. With explainer,
deltas are divided by the per-feature normalizer sigma so features of
different scales share one axis.
| PARAMETER | DESCRIPTION |
|---|---|
batch
|
The batch result to visualize.
TYPE:
|
explainer
|
When given, standardizes deltas by its per-feature
TYPE:
|
k
|
Which plan(s) to include per row —
TYPE:
|
top_n
|
Maximum number of features to show, most-changed first.
TYPE:
|
ax
|
Existing axes to draw on; a new figure is created if omitted.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
The axes the strip plot was drawn on.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz_batch.py
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 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 | |
recourse_burden_table
¶
recourse_burden_table(
batch: BatchResult,
groups: Sequence[object],
*,
group_order: Sequence[object] | None = None,
min_group_size: int = 10,
) -> list[dict[str, object]]
Recourse cost and availability by segment, one dict per group.
groups assigns a segment label to every input row of the batch, in the
order the rows were solved (one label per distinct id). A row's burden is
its cheapest feasible plan's distance; a row with no feasible plan has
no burden and counts toward certified_no_share when every infeasibility
marker it carries is certified, else unproven_no_share — an exhausted
search is not a proven "no".
Burden compares costs under one declared cost model and constraint set; a disparity between groups is a finding to investigate, not a fairness verdict — which metric matters is a choice this table does not make.
| PARAMETER | DESCRIPTION |
|---|---|
batch
|
The batch whose rows are being segmented.
TYPE:
|
groups
|
One segment label per input row, aligned with the batch's row order.
TYPE:
|
group_order
|
The groups to report, in order; defaults to the sorted labels.
TYPE:
|
min_group_size
|
Groups smaller than this are flagged
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
list of dict
|
Per group: |
| RAISES | DESCRIPTION |
|---|---|
TreecfError
|
If |
Source code in src/treecf/viz_batch.py
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 433 434 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 | |
plot_recourse_burden
¶
plot_recourse_burden(
batch: BatchResult,
groups: Sequence[object],
*,
axes: Any = None,
group_order: Sequence[object] | None = None,
min_group_size: int = 10,
stat: str = "median",
) -> Any
Who pays for recourse, and who has none: burden and availability by segment.
Panel A draws one burden ECDF per group among the rows that have recourse (colour and linestyle both cycle, so groups stay tellable apart without colour); panel B stacks each group's availability into has recourse, certified no recourse, and unproven no recourse — the last hatched, because an exhausted search is not a proven "no" and the eye must not merge the two.
Burden compares costs under one declared cost model and constraint set; a
disparity between groups is a finding to investigate, not a fairness
verdict — which metric matters is a choice this plot does not make.
recourse_burden_table exposes the numbers behind the picture.
| PARAMETER | DESCRIPTION |
|---|---|
batch
|
The batch whose rows are being segmented.
TYPE:
|
groups
|
One segment label per input row, aligned with the batch's row order.
TYPE:
|
axes
|
Target axes; a 1x2 figure is created when omitted.
TYPE:
|
group_order
|
The groups to draw, in order; defaults to the sorted labels.
TYPE:
|
min_group_size
|
Groups smaller than this get
TYPE:
|
stat
|
Which burden statistic the legend reports per group.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
array of the two axes.
|
|
| RAISES | DESCRIPTION |
|---|---|
MissingExtraError
|
If matplotlib is not installed. |
TreecfError
|
If |
Source code in src/treecf/viz_batch.py
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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 | |