Total Result¶
The SimulationTotalResult class aggregates multiple SimulationSeriesResult instances across a parameter space defined by three axes:
- Generative model (e.g.
UNI,IC,VMF_HC) - Number of voters (e.g.
11,101,1001) - Number of candidates (e.g.
3,14)
Each series is uniquely keyed by its (gen_model, n_voters, n_candidates) triplet.
The class enables filtering, metric pivoting, comparison plots, and persistence across the entire parameter space.
Quick start¶
From a TOML config (recommended)¶
The simplest way to build a SimulationTotalResult is via simulation_series_from_config, which iterates over every combination defined in your config file:
from vote_simulation.simulation.simulation import simulation_series_from_config
total = simulation_series_from_config("config/simulation.toml")
print(total)
# SimulationTotalResult(series=6, models=['VMF_HC'], voters=[11, 101, 1001], candidates=[3, 14])
Manual construction¶
You can also build it by hand, calling simulation_instance for each point in the parameter grid:
from vote_simulation.models.results.total_result import SimulationTotalResult
from vote_simulation.simulation.simulation import simulation_instance
rules = ["PLU1", "PLU2", "BORD", "RV", "COPE", "HARE", "MJ"]
total = SimulationTotalResult()
for model in ["UNI", "IC"]:
for n_v in [101, 1001]:
for n_c in [3, 14]:
series = simulation_instance(model, n_v, n_c, rules, n_iteration=100)
total.add_series(series)
Duplicate keys
add_series() raises ValueError if a series with the same (model, voters, candidates) key is already present.
Use replace_series() to overwrite an existing entry.
Series key¶
Each series is indexed by a SeriesKey named tuple:
from vote_simulation.models.results.total_result import SeriesKey
key = SeriesKey(gen_model="UNI", n_voters=101, n_candidates=3)
You can check membership and retrieve series by key:
Accessors¶
| Property / method | Returns | Description |
|---|---|---|
series_count |
int |
Number of stored series |
keys |
list[SeriesKey] |
Sorted list of all keys |
gen_models |
list[str] |
Distinct model codes |
voter_counts |
list[int] |
Distinct voter counts |
candidate_counts |
list[int] |
Distinct candidate counts |
get_series(model, nv, nc) |
SimulationSeriesResult |
Look up one series |
len(total) |
int |
Same as series_count |
key in total |
bool |
Membership test |
Iteration yields (SeriesKey, SimulationSeriesResult) pairs in sorted order:
for key, series in total:
print(f"{key} → {series.step_count} steps, mean_dist={series.mean_distance:.1f}%")
Filtering¶
filter() returns a new SimulationTotalResult sharing the same series objects (shallow copy).
All three parameters are optional keyword-only arguments — combine as needed:
# Keep only UNI model
uni = total.filter(gen_model="UNI")
# Keep only 14-candidate runs
c14 = total.filter(n_candidates=14)
# Combine: IC model with 3 candidates
ic3 = total.filter(gen_model="IC", n_candidates=3)
Filtering is the key step before plotting or pivoting: most methods require that the "third" parameter (the one not on the axes) has a single distinct value.
Metrics¶
Summary DataFrame¶
summary_frame() returns one row per series with scalar metrics:
Columns: gen_model, n_voters, n_candidates, step_count, n_iterations, mean_distance, most_distant_rule_a, most_distant_rule_b, most_distant_distance.
Metric matrix (pivot)¶
metric_matrix() pivots a scalar metric into a 2D table across two parameters.
The third parameter must be fixed to a single value (filter first if needed).
# Fix voters → pivot models vs candidates
pivot, desc = total.filter(n_voters=101).metric_matrix(
row_param="gen_model",
col_param="n_candidates",
metric="mean_distance",
)
print(f"Fixed: {desc}")
print(pivot)
Output:
Valid axis parameters: "gen_model", "n_voters", "n_candidates".
Rule-pair distance¶
rule_pair_frame() extracts the mean distance between two specific rules across all series:
gen_model n_voters n_candidates distance
IC 101 3 24.00
IC 101 14 72.17
UNI 101 3 24.00
UNI 101 14 72.17
Winner metrics¶
SimulationTotalResult exposes two methods to analyse winner quality metrics (see WinnerMetrics) aggregated across the entire parameter space.
Available metric fields¶
The following fields are available in every WinnerMetrics object and can be used as the metric_field argument:
| Field | Type | Description |
|---|---|---|
social_acceptability |
float |
Fraction of voters who prefer the winner(s) to every other candidate |
utility_mean |
float |
Mean cardinal utility of the co-winner(s) across all voters |
utility_median |
float |
Median cardinal utility of the co-winner(s) |
utility_var |
float |
Variance of cardinal utility of the co-winner(s) |
rank_mean |
float |
Mean Borda rank of the co-winner(s) (0 = worst, n_candidates−1 = best) |
rank_median |
float |
Median Borda rank of the co-winner(s) |
rank_var |
float |
Variance of Borda rank of the co-winner(s) |
freq_first |
float |
Fraction of voters who rank a co-winner first |
freq_last |
float |
Fraction of voters who rank a co-winner last |
has_tie |
bool |
Whether there are multiple co-winners |
n_cowinners |
int |
Number of co-winners |
metrics_comparison_frame¶
metrics_comparison_frame() returns a long-form DataFrame with one row per (gen_model, n_voters, n_candidates) entry, containing the aggregated statistic for one rule and one metric:
df = total.metrics_comparison_frame("social_acceptability", "COPE")
print(df.to_string(index=False))
gen_model n_voters n_candidates social_acceptability_mean
IC 50 3 0.71
IC 50 7 0.63
UNI 50 3 0.68
UNI 50 7 0.59
Parameters:
metric_field— one of the fields listed in the table aboverule_code— normalised rule code (e.g."COPE","AP_T0")stat—"mean"(default) or"std"
Series without the requested rule's metrics are silently omitted.
metrics_pivot¶
metrics_pivot() is the 2-D counterpart of metrics_comparison_frame(): it pivots the long-form table into a matrix, analogously to metric_matrix() for rule-distance metrics.
pivot, fixed = total.metrics_pivot(
"social_acceptability", "COPE",
row_param="n_voters",
col_param="n_candidates",
)
print(f"Fixed: {fixed}")
print(pivot.to_string())
pivot2, fixed2 = total.metrics_pivot(
"rank_mean", "AP_T0",
row_param="n_voters",
col_param="n_candidates",
)
print(f"Fixed: {fixed2}")
print(pivot2.to_string())
Parameters mirror metric_matrix():
| Parameter | Type | Description |
|---|---|---|
metric_field |
str |
Metric field name (see table above) |
rule_code |
str |
Rule to inspect |
row_param |
str |
Row axis — "gen_model", "n_voters", or "n_candidates" |
col_param |
str |
Column axis — "gen_model", "n_voters", or "n_candidates" |
stat |
str |
"mean" (default) or "std" |
Filter before pivoting
If the third parameter has more than one distinct value, metrics_pivot() averages over it implicitly. Use .filter(...) beforehand when you want a strict 2-D slice.
Plotting¶
All plot methods accept show=False to skip plt.show() and save_path to write to disk.
They return the matplotlib Axes object for further customization.
Metric heatmap¶
Visualize a scalar metric across two parameter axes:
total.filter(n_voters=101).plot_metric_heatmap(
row_param="gen_model",
col_param="n_candidates",
metric="mean_distance",
show=False,
save_path="results/metric_heatmap.png",
)
This produces a color-coded matrix where each cell shows the mean_distance for that (model, candidates) combination.
Rule-pair heatmap¶
Focus on a single pair of rules:
total.filter(n_voters=101).plot_rule_pair_heatmap(
"PLU1", "BORD",
row_param="gen_model",
col_param="n_candidates",
show=False,
save_path="results/rule_pair.png",
)
Comparison grid¶
Side-by-side full rule-distance heatmaps, one per value of a varying parameter:
total.filter(gen_model="UNI", n_voters=101).plot_comparison_grid(
"n_candidates",
show=False,
save_path="results/comparison_grid.png",
)
This is particularly useful to visually compare how rule agreement changes when the number of candidates increases, with all other variables held constant.
Filter before plotting
plot_comparison_grid requires that the two non-varying parameters are each fixed to a single value.
Chain .filter(...) before calling it.
Persistence¶
Save to directory¶
Each series is saved as a separate parquet file named after its config label:
total.save_to_dir("results/total/")
# Creates:
# results/total/UNI_v101_c3_i100.parquet
# results/total/UNI_v101_c14_i100.parquet
# ...
Load from directory¶
Delete¶
Complete example¶
from vote_simulation.models.results.total_result import SimulationTotalResult
from vote_simulation.simulation.simulation import simulation_instance
# 1) Build
rules = ["PLU1", "PLU2", "BORD", "RV", "COPE", "HARE", "MJ"]
total = SimulationTotalResult()
for model in ["UNI", "IC"]:
for n_c in [3, 14]:
series = simulation_instance(model, 101, n_c, rules, n_iteration=50)
total.add_series(series)
# 2) Explore
print(total)
print(total.summary_frame())
# 3) Filter + pivot
pivot, desc = total.filter(n_voters=101).metric_matrix(
"gen_model", "n_candidates",
)
print(pivot)
# 4) Plot
total.filter(n_voters=101).plot_metric_heatmap(
"gen_model", "n_candidates", show=False,
save_path="metric_heatmap.png",
)
total.filter(gen_model="UNI", n_voters=101).plot_comparison_grid(
"n_candidates", show=False,
save_path="comparison.png",
)
# 5) Persist
total.save_to_dir("results/total/")
loaded = SimulationTotalResult.load_from_dir("results/total/")
assert loaded.series_count == total.series_count
API reference¶
Total result model for vote_simulation.
Aggregates multiple :class:SimulationSeriesResult instances across a
parameter space defined by generative model, number of voters, and
number of candidates.
Each series is uniquely keyed by (gen_model, n_voters, n_candidates).
Provides filtering, scalar-metric pivots, and comparison plots.
Typical workflow::
total = SimulationTotalResult()
for model in ["UNI", "IC"]:
for n_v in [101, 1001]:
for n_c in [3, 14]:
series = simulation_instance(model, n_v, n_c, rules)
total.add_series(series)
# Fix model, compare across voters × candidates
uni = total.filter(gen_model="UNI")
uni.plot_metric_heatmap(row_param="n_voters", col_param="n_candidates")
# Side-by-side rule distance heatmaps varying candidates
total.filter(gen_model="UNI", n_voters=1001) \
.plot_comparison_grid("n_candidates")
SeriesKey
¶
Bases: NamedTuple
Identifies one series in the (model, voters, candidates) space.
Source code in src/vote_simulation/models/results/total_result.py
SimulationTotalResult
dataclass
¶
Collection of series results spanning a parameter space.
Each series is uniquely keyed by (gen_model, n_voters, n_candidates).
Provides filtering, scalar-metric pivots, and comparison plots.
Source code in src/vote_simulation/models/results/total_result.py
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 121 122 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 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 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 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 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 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 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 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 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 805 806 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 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 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 | |
candidate_counts
property
¶
Sorted distinct candidate counts.
gen_models
property
¶
Sorted distinct generative-model codes.
keys
property
¶
Sorted list of all series keys.
series_count
property
¶
Number of stored series.
voter_counts
property
¶
Sorted distinct voter counts.
__iter__()
¶
add_series(series)
¶
Register a series result.
Raises:
| Type | Description |
|---|---|
ValueError
|
If a series with the same key is already present. |
Source code in src/vote_simulation/models/results/total_result.py
delete_dir(dir_path)
staticmethod
¶
Remove a saved total-result directory.
Returns True if the directory existed and was deleted.
Source code in src/vote_simulation/models/results/total_result.py
filter(*, gen_model=None, n_voters=None, n_candidates=None)
¶
Return a new instance containing only the matching series.
Series objects are shared (shallow copy), not deep-copied.
Source code in src/vote_simulation/models/results/total_result.py
get_series(gen_model, n_voters, n_candidates)
¶
Retrieve a single series by its parameter triple.
Raises:
| Type | Description |
|---|---|
KeyError
|
If no matching series exists. |
Source code in src/vote_simulation/models/results/total_result.py
load_from_dir(dir_path)
classmethod
¶
Reconstruct a :class:SimulationTotalResult from a folder of parquet files.
Each .parquet file is loaded as a :class:SimulationSeriesResult
and registered via :meth:add_series.
Source code in src/vote_simulation/models/results/total_result.py
metric_matrix(row_param='n_voters', col_param='n_candidates', *, metric='mean_distance')
¶
Pivot a scalar metric into a 2D matrix.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
row_param
|
str
|
Key field for the row axis. |
'n_voters'
|
col_param
|
str
|
Key field for the column axis. |
'n_candidates'
|
metric
|
str
|
Column name from :meth: |
'mean_distance'
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
|
str
|
human-readable description of the fixed (third) parameter. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the third parameter has multiple distinct values. |
Source code in src/vote_simulation/models/results/total_result.py
metrics_comparison_frame(metric_field, rule_code, stat='mean')
¶
Cross-parameter table of one winner metric for one rule.
Builds a long-form :class:~pandas.DataFrame with one row per
(gen_model, n_voters, n_candidates) entry, containing the
requested aggregated statistic for rule_code.
Parameters¶
metric_field:
One of the fields in
:data:~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS
(e.g. "social_acceptability", "rank_mean").
rule_code:
The normalised rule code to extract (e.g. "COPE").
stat:
Which statistic column to read from
:attr:~vote_simulation.models.results.series_result.SimulationSeriesResult.metrics_summary_frame:
"mean" (default) or "std".
Returns¶
pd.DataFrame
Columns: gen_model, n_voters, n_candidates,
<metric_field>_<stat>. Series without the requested rule's
metrics are omitted.
Source code in src/vote_simulation/models/results/total_result.py
metrics_pivot(metric_field, rule_code, row_param='n_voters', col_param='n_candidates', stat='mean')
¶
Pivot :meth:metrics_comparison_frame into a 2D matrix.
Analogous to :meth:metric_matrix but for winner metrics instead of
rule-distance metrics.
Parameters¶
metric_field:
Metric field name (see :data:~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS).
rule_code:
The rule to inspect.
row_param / col_param:
Which of the three key parameters (gen_model, n_voters,
n_candidates) to use as row/column axes.
stat:
"mean" or "std".
Returns¶
(pivot_df, fixed_description) The pivot DataFrame and a description of the fixed third parameter.
Source code in src/vote_simulation/models/results/total_result.py
plot_comparison_grid(vary_param='n_candidates', *, annotate=True, show=True, save_path=None)
¶
Side-by-side rule-distance heatmaps, one per value of vary_param.
The other two parameters must each have a single distinct value
— use :meth:filter first.
Example::
total.filter(gen_model="UNI", n_voters=1001) \
.plot_comparison_grid("n_candidates")
Source code in src/vote_simulation/models/results/total_result.py
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 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 | |
plot_metric_heatmap(row_param='n_voters', col_param='n_candidates', *, metric='mean_distance', ax=None, annotate=True, show=True, save_path=None)
¶
Heatmap of a scalar metric pivoted across two parameters.
The remaining (third) parameter must have a single distinct value
— use :meth:filter first if needed.
Source code in src/vote_simulation/models/results/total_result.py
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 | |
plot_metrics_rules_matrix(row_param='n_voters', col_param='n_candidates', *, stat='mean', metrics=None, annotate=True, fmt='.3f', show=True, save_path=None)
¶
Heatmap with rules as columns and metrics as rows.
Each cell shows the aggregated statistic (stat) for a given
(metric, rule) pair, averaged over all series currently in the
object (use :meth:filter to restrict the scope first).
The color scale is normalised per row (per metric) so that the gradient is uniform within each row and rules can be directly compared regardless of the absolute scale of each metric.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
row_param
|
str
|
Used only to derive a description of fixed parameters in the title. Filtering is the recommended way to narrow down the data. |
'n_voters'
|
col_param
|
str
|
Same as row_param. |
'n_candidates'
|
stat
|
str
|
|
'mean'
|
metrics
|
list[str] | None
|
Explicit list of metric fields (rows). When None all
fields in :data: |
None
|
annotate
|
bool
|
Whether to print raw values inside each cell. |
True
|
fmt
|
str
|
Format string used for annotations (e.g. |
'.3f'
|
show
|
bool
|
Whether to call |
True
|
save_path
|
str | None
|
Optional file path to save the figure. |
None
|
Returns:
| Type | Description |
|---|---|
Any
|
The matplotlib Axes used for plotting. |
Source code in src/vote_simulation/models/results/total_result.py
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 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 | |
plot_rule_pair_heatmap(rule_a, rule_b, row_param='n_voters', col_param='n_candidates', *, ax=None, annotate=True, show=True, save_path=None)
¶
Heatmap of one rule-pair distance across two parameters.
Source code in src/vote_simulation/models/results/total_result.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 | |
plot_winner_metric_heatmap(metric_field, rule_code, row_param='n_voters', col_param='n_candidates', *, stat='mean', ax=None, annotate=True, show=True, save_path=None)
¶
Heatmap of one winner metric for one rule, pivoted across two parameters.
Analogous to :meth:plot_metric_heatmap but for
:class:~vote_simulation.models.rules.WinnerMetrics fields instead of
rule-distance metrics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
metric_field
|
str
|
One of the fields in
:data: |
required |
rule_code
|
str
|
Normalised rule code to inspect (e.g. |
required |
row_param
|
str
|
Row axis — |
'n_voters'
|
col_param
|
str
|
Column axis (same choices). |
'n_candidates'
|
stat
|
str
|
|
'mean'
|
ax
|
Any | None
|
Optional matplotlib Axes. A new figure is created when None. |
None
|
annotate
|
bool
|
Whether to print cell values on the heatmap. |
True
|
show
|
bool
|
Whether to call |
True
|
save_path
|
str | None
|
Optional file path to save the figure. |
None
|
Returns:
| Type | Description |
|---|---|
Any
|
The matplotlib Axes used for plotting. |
Source code in src/vote_simulation/models/results/total_result.py
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 805 806 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 | |
plot_winner_metrics_grid(rule_code, row_param='n_voters', col_param='n_candidates', *, stat='mean', metrics=None, annotate=True, show=True, save_path=None)
¶
Grid of heatmaps — one panel per winner metric — for a single rule.
Iterates over every field in
:data:~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS (or
the subset given by metrics) and draws each as a heatmap panel,
using the same axes as :meth:plot_winner_metric_heatmap.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rule_code
|
str
|
Normalised rule code to inspect (e.g. |
required |
row_param
|
str
|
Row axis — |
'n_voters'
|
col_param
|
str
|
Column axis (same choices). |
'n_candidates'
|
stat
|
str
|
|
'mean'
|
metrics
|
list[str] | None
|
Explicit list of metric fields to plot. When None all
fields in :data: |
None
|
annotate
|
bool
|
Whether to print cell values on each panel. |
True
|
show
|
bool
|
Whether to call |
True
|
save_path
|
str | None
|
Optional file path to save the whole figure. |
None
|
Returns:
| Type | Description |
|---|---|
Any
|
The 2-D NumPy array of matplotlib Axes. |
Source code in src/vote_simulation/models/results/total_result.py
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 | |
replace_series(series)
¶
rule_pair_frame(rule_a, rule_b)
¶
Mean distance between two rules in every series.
Returns a DataFrame with columns gen_model, n_voters,
n_candidates, distance.
Source code in src/vote_simulation/models/results/total_result.py
save_to_dir(dir_path)
¶
Persist every series as <label>.parquet inside dir_path.
Source code in src/vote_simulation/models/results/total_result.py
summary_frame()
¶
One-row-per-series DataFrame with key fields and scalar metrics.
Columns: gen_model, n_voters, n_candidates,
step_count, n_iterations, mean_distance,
most_distant_rule_a, most_distant_rule_b,
most_distant_distance.