Skip to content

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

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:

SeriesKey("UNI", 101, 3) in total   # True
series = total.get_series("UNI", 101, 3)

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:

df = total.summary_frame()
print(df.to_string(index=False))

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:

Fixed: n_voters=101
n_candidates         3          14
gen_model
IC            17.81      50.91
UNI           24.95      50.62

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:

df = total.rule_pair_frame("PLU1", "BORD")
print(df.to_string(index=False))
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 above
  • rule_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())
Fixed: gen_model=IC, UNI
n_candidates        3         7
n_voters
50            0.695     0.610
200           0.721     0.638
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

loaded = SimulationTotalResult.load_from_dir("results/total/")
print(loaded)

Delete

SimulationTotalResult.delete_dir("results/total/")

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
class SeriesKey(NamedTuple):
    """Identifies one series in the ``(model, voters, candidates)`` space."""

    gen_model: str
    n_voters: int
    n_candidates: int

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
@dataclass(slots=True)
class SimulationTotalResult:
    """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.
    """

    _entries: dict[SeriesKey, SimulationSeriesResult] = field(
        default_factory=dict,
        init=False,
        repr=False,
    )

    # ------------------------------------------------------------------
    # Mutation
    # ------------------------------------------------------------------

    def add_series(self, series: SimulationSeriesResult) -> None:
        """Register a series result.

        Raises:
            ValueError: If a series with the same key is already present.
        """
        key = _extract_key(series)
        if key in self._entries:
            raise ValueError(f"Duplicate series key {key!r}. Use replace_series() to overwrite.")
        self._entries[key] = series

    def replace_series(self, series: SimulationSeriesResult) -> None:
        """Add or overwrite a series at its config key."""
        key = _extract_key(series)
        self._entries[key] = series

    # ------------------------------------------------------------------
    # Accessors
    # ------------------------------------------------------------------

    @property
    def series_count(self) -> int:
        """Number of stored series."""
        return len(self._entries)

    @property
    def keys(self) -> list[SeriesKey]:
        """Sorted list of all series keys."""
        return sorted(self._entries)

    @property
    def gen_models(self) -> list[str]:
        """Sorted distinct generative-model codes."""
        return sorted({k.gen_model for k in self._entries})

    @property
    def voter_counts(self) -> list[int]:
        """Sorted distinct voter counts."""
        return sorted({k.n_voters for k in self._entries})

    @property
    def candidate_counts(self) -> list[int]:
        """Sorted distinct candidate counts."""
        return sorted({k.n_candidates for k in self._entries})

    def get_series(self, gen_model: str, n_voters: int, n_candidates: int) -> SimulationSeriesResult:
        """Retrieve a single series by its parameter triple.

        Raises:
            KeyError: If no matching series exists.
        """
        key = SeriesKey(gen_model, n_voters, n_candidates)
        try:
            return self._entries[key]
        except KeyError:
            raise KeyError(f"No series for {key!r}") from None

    def __len__(self) -> int:
        return len(self._entries)

    def __contains__(self, key: object) -> bool:
        return key in self._entries

    def __iter__(self):  # noqa: ANN204
        """Iterate over ``(key, series)`` pairs in sorted key order."""
        yield from sorted(self._entries.items())

    def __repr__(self) -> str:
        return (
            f"SimulationTotalResult("
            f"series={self.series_count}, "
            f"models={self.gen_models}, "
            f"voters={self.voter_counts}, "
            f"candidates={self.candidate_counts})"
        )

    # ------------------------------------------------------------------
    # Filtering
    # ------------------------------------------------------------------

    def filter(
        self,
        *,
        gen_model: str | None = None,
        n_voters: int | None = None,
        n_candidates: int | None = None,
    ) -> SimulationTotalResult:
        """Return a new instance containing only the matching series.

        Series objects are shared (shallow copy), not deep-copied.
        """
        result = SimulationTotalResult()
        for key, series in self._entries.items():
            if gen_model is not None and key.gen_model != gen_model:
                continue
            if n_voters is not None and key.n_voters != n_voters:
                continue
            if n_candidates is not None and key.n_candidates != n_candidates:
                continue
            result._entries[key] = series
        return result

    # ------------------------------------------------------------------
    # Metrics
    # ------------------------------------------------------------------

    def summary_frame(self) -> pd.DataFrame:
        """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``.
        """
        rows: list[dict[str, Any]] = []
        for key in sorted(self._entries):
            series = self._entries[key]
            r_a, r_b, dist = series.most_distant_rules
            rows.append(
                {
                    "gen_model": key.gen_model,
                    "n_voters": key.n_voters,
                    "n_candidates": key.n_candidates,
                    "step_count": series.step_count,
                    "n_iterations": series.config.n_iterations,
                    "mean_distance": series.mean_distance,
                    "most_distant_rule_a": r_a,
                    "most_distant_rule_b": r_b,
                    "most_distant_distance": dist,
                }
            )
        return pd.DataFrame(rows)

    def metrics_comparison_frame(
        self,
        metric_field: str,
        rule_code: str,
        stat: str = "mean",
    ) -> pd.DataFrame:
        """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.
        """
        col = f"{metric_field}_{stat}"
        rule_up = rule_code.strip().upper()
        rows: list[dict[str, Any]] = []
        for key in sorted(self._entries):
            series = self._entries[key]
            frame = series.metrics_summary_frame
            if frame.empty or rule_up not in frame.index or col not in frame.columns:
                continue
            rows.append(
                {
                    "gen_model": key.gen_model,
                    "n_voters": key.n_voters,
                    "n_candidates": key.n_candidates,
                    col: float(frame.loc[rule_up, col]),
                }
            )
        return pd.DataFrame(rows)

    def metrics_pivot(
        self,
        metric_field: str,
        rule_code: str,
        row_param: str = "n_voters",
        col_param: str = "n_candidates",
        stat: str = "mean",
    ) -> tuple[pd.DataFrame, str]:
        """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.
        """
        self._validate_axis_params(row_param, col_param)
        col = f"{metric_field}_{stat}"
        df = self.metrics_comparison_frame(metric_field, rule_code, stat=stat)
        if df.empty:
            return pd.DataFrame(), ""
        third = next(iter(_PARAM_NAMES - {row_param, col_param}))
        third_vals = {str(v) for v in df[third].unique()}
        fixed_desc = f"{third}={', '.join(sorted(third_vals))}" if third_vals else ""
        pivot = df.pivot_table(index=row_param, columns=col_param, values=col, aggfunc="mean")
        return pivot, fixed_desc

    def metric_matrix(
        self,
        row_param: str = "n_voters",
        col_param: str = "n_candidates",
        *,
        metric: str = "mean_distance",
    ) -> tuple[pd.DataFrame, str]:
        """Pivot a scalar metric into a 2D matrix.

        Args:
            row_param: Key field for the row axis.
            col_param: Key field for the column axis.
            metric: Column name from :meth:`summary_frame`
                (e.g. ``"mean_distance"``, ``"most_distant_distance"``).

        Returns:
            ``(pivot_df, fixed_description)`` — the pivot DataFrame and a
            human-readable description of the fixed (third) parameter.

        Raises:
            ValueError: If the third parameter has multiple distinct values.
        """
        self._validate_axis_params(row_param, col_param)

        third = next(iter(_PARAM_NAMES - {row_param, col_param}))
        third_vals = {getattr(k, third) for k in self._entries}
        if len(third_vals) > 1:
            raise ValueError(
                f"Parameter '{third}' has {len(third_vals)} distinct values "
                f"{third_vals}. Call .filter({third}=<value>) first."
            )

        fixed_desc = f"{third}={next(iter(third_vals))}" if third_vals else ""

        df = self.summary_frame()
        pivot = df.pivot_table(
            index=row_param,
            columns=col_param,
            values=metric,
            aggfunc="mean",
        )
        return pivot, fixed_desc

    def rule_pair_frame(self, rule_a: str, rule_b: str) -> pd.DataFrame:
        """Mean distance between two rules in every series.

        Returns a DataFrame with columns ``gen_model``, ``n_voters``,
        ``n_candidates``, ``distance``.
        """
        a, b = rule_a.strip().upper(), rule_b.strip().upper()
        rows: list[dict[str, Any]] = []
        for key in sorted(self._entries):
            series = self._entries[key]
            mat = series.mean_distance_matrix_frame
            if a in mat.index and b in mat.columns:
                dist = float(mat.loc[a, b])
            else:
                dist = float("nan")
            rows.append(
                {
                    "gen_model": key.gen_model,
                    "n_voters": key.n_voters,
                    "n_candidates": key.n_candidates,
                    "distance": dist,
                }
            )
        return pd.DataFrame(rows)

    # ------------------------------------------------------------------
    # Plotting
    # ------------------------------------------------------------------

    def plot_metric_heatmap(
        self,
        row_param: str = "n_voters",
        col_param: str = "n_candidates",
        *,
        metric: str = "mean_distance",
        ax: Any | None = None,
        annotate: bool = True,
        show: bool = True,
        save_path: str | None = None,
    ) -> Any:
        """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.
        """
        import matplotlib.pyplot as plt

        pivot, fixed_desc = self.metric_matrix(row_param, col_param, metric=metric)
        matrix = pivot.to_numpy(dtype=np.float64)
        row_labels = [str(v) for v in pivot.index]
        col_labels = [str(v) for v in pivot.columns]

        vmin = float(np.nanmin(matrix))
        vmax = float(np.nanmax(matrix))
        margin = (vmax - vmin) * 0.1 or 1.0
        vmin = max(0.0, vmin - margin)
        vmax = vmax + margin

        fig_w = max(6.0, 1.2 * len(col_labels) + 2)
        fig_h = max(4.0, 1.0 * len(row_labels) + 2)
        if ax is None:
            _, ax = plt.subplots(
                figsize=(fig_w, fig_h),
                constrained_layout=True,
            )

        image = ax.imshow(
            matrix,
            cmap="YlOrRd",
            vmin=vmin,
            vmax=vmax,
            interpolation="nearest",
            aspect="auto",
        )
        ax.set_xticks(range(len(col_labels)), labels=col_labels)
        ax.set_yticks(range(len(row_labels)), labels=row_labels)
        ax.set_xlabel(col_param)
        ax.set_ylabel(row_param)

        title = metric.replace("_", " ").title()
        if fixed_desc:
            title += f"\n({fixed_desc})"
        ax.set_title(title, fontsize=11)

        if annotate:
            fs = max(6, min(12, int(160 / max(matrix.size, 1))))
            for i in range(matrix.shape[0]):
                for j in range(matrix.shape[1]):
                    val = matrix[i, j]
                    if not np.isnan(val):
                        ax.text(
                            j,
                            i,
                            f"{val:.1f}",
                            ha="center",
                            va="center",
                            fontsize=fs,
                            color="black",
                        )

        cbar = ax.figure.colorbar(
            image,
            ax=ax,
            fraction=0.046,
            pad=0.04,
            shrink=0.9,
        )
        cbar.set_label(metric.replace("_", " ").title())

        if save_path is not None:
            fig = ax.figure
            assert isinstance(fig, plt.Figure)
            os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
            fig.savefig(save_path)
        if show:
            plt.show()

        return ax

    def plot_rule_pair_heatmap(
        self,
        rule_a: str,
        rule_b: str,
        row_param: str = "n_voters",
        col_param: str = "n_candidates",
        *,
        ax: Any | None = None,
        annotate: bool = True,
        show: bool = True,
        save_path: str | None = None,
    ) -> Any:
        """Heatmap of one rule-pair distance across two parameters."""
        import matplotlib.pyplot as plt

        self._validate_axis_params(row_param, col_param)

        df = self.rule_pair_frame(rule_a, rule_b)
        third = next(iter(_PARAM_NAMES - {row_param, col_param}))
        third_vals = df[third].unique()
        if len(third_vals) > 1:
            raise ValueError(f"Parameter '{third}' has {len(third_vals)} values. Call .filter({third}=<value>) first.")

        pivot = df.pivot_table(
            index=row_param,
            columns=col_param,
            values="distance",
            aggfunc="mean",
        )
        matrix = pivot.to_numpy(dtype=np.float64)
        row_labels = [str(v) for v in pivot.index]
        col_labels = [str(v) for v in pivot.columns]

        fig_w = max(6.0, 1.2 * len(col_labels) + 2)
        fig_h = max(4.0, 1.0 * len(row_labels) + 2)
        if ax is None:
            _, ax = plt.subplots(
                figsize=(fig_w, fig_h),
                constrained_layout=True,
            )

        image = ax.imshow(
            matrix,
            cmap="Reds",
            vmin=0,
            vmax=100,
            interpolation="nearest",
            aspect="auto",
        )
        ax.set_xticks(range(len(col_labels)), labels=col_labels)
        ax.set_yticks(range(len(row_labels)), labels=row_labels)
        ax.set_xlabel(col_param)
        ax.set_ylabel(row_param)

        a_up, b_up = rule_a.strip().upper(), rule_b.strip().upper()
        title = f"Distance: {a_up} \u2194 {b_up}"
        if len(third_vals) == 1:
            title += f"\n({third}={third_vals[0]})"
        ax.set_title(title, fontsize=11)

        if annotate:
            fs = max(6, min(12, int(160 / max(matrix.size, 1))))
            for i in range(matrix.shape[0]):
                for j in range(matrix.shape[1]):
                    val = matrix[i, j]
                    if not np.isnan(val):
                        ax.text(
                            j,
                            i,
                            f"{val:.1f}",
                            ha="center",
                            va="center",
                            fontsize=fs,
                            color="black",
                        )

        cbar = ax.figure.colorbar(
            image,
            ax=ax,
            fraction=0.046,
            pad=0.04,
            shrink=0.9,
        )
        cbar.set_label("Mean distance (%)")

        if save_path is not None:
            fig = ax.figure
            assert isinstance(fig, plt.Figure)
            os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
            fig.savefig(save_path)
        if show:
            plt.show()

        return ax

    def plot_metrics_rules_matrix(
        self,
        row_param: str = "n_voters",
        col_param: str = "n_candidates",
        *,
        stat: str = "mean",
        metrics: list[str] | None = None,
        annotate: bool = True,
        fmt: str = ".3f",
        show: bool = True,
        save_path: str | None = None,
    ) -> Any:
        """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.

        Args:
            row_param: Used only to derive a description of fixed parameters
                in the title.  Filtering is the recommended way to narrow down
                the data.
            col_param: Same as *row_param*.
            stat: ``"mean"`` (default) or ``"std"``.
            metrics: Explicit list of metric fields (rows).  When *None* all
                fields in :data:`~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS`
                are included.
            annotate: Whether to print raw values inside each cell.
            fmt: Format string used for annotations (e.g. ``\".3f\"``).
            show: Whether to call ``plt.show()`` at the end.
            save_path: Optional file path to save the figure.

        Returns:
            The matplotlib Axes used for plotting.
        """
        import matplotlib.pyplot as plt
        from matplotlib.colors import Normalize
        from matplotlib.cm import ScalarMappable

        fields = list(metrics) if metrics is not None else list(METRIC_FIELDS)

        # Collect per-rule means across all series
        # Discover all rules present in any series
        all_rules: list[str] = []
        for series in self._entries.values():
            frame = series.metrics_summary_frame
            if not frame.empty:
                for r in frame.index:
                    if r not in all_rules:
                        all_rules.append(r)

        if not all_rules:
            raise ValueError(
                "No winner-metric data found. "
                "Check that metrics were computed during simulation."
            )

        # Build raw matrix: shape (n_metrics, n_rules)
        # Average over all series
        n_m = len(fields)
        n_r = len(all_rules)
        raw = np.full((n_m, n_r), np.nan)

        for s_idx, series in enumerate(self._entries.values()):
            frame = series.metrics_summary_frame
            if frame.empty:
                continue
            for ri, rule in enumerate(all_rules):
                if rule not in frame.index:
                    continue
                for mi, field in enumerate(fields):
                    col = f"{field}_{stat}"
                    if col not in frame.columns:
                        continue
                    val = float(frame.loc[rule, col])
                    if np.isnan(raw[mi, ri]):
                        raw[mi, ri] = val
                    else:
                        raw[mi, ri] = (raw[mi, ri] * s_idx + val) / (s_idx + 1)

        # Drop metric rows that are entirely NaN
        valid_mask = ~np.all(np.isnan(raw), axis=1)
        fields = [f for f, v in zip(fields, valid_mask) if v]
        raw = raw[valid_mask]

        if len(fields) == 0:
            raise ValueError("No valid metric data to plot.")

        # Row-normalise: each row scaled to [0, 1]
        row_min = np.nanmin(raw, axis=1, keepdims=True)
        row_max = np.nanmax(raw, axis=1, keepdims=True)
        row_range = row_max - row_min
        row_range[row_range == 0] = 1.0  # avoid division by zero for constant rows
        normed = (raw - row_min) / row_range

        fig_w = max(8.0, 1.4 * n_r + 2)
        fig_h = max(5.0, 0.6 * len(fields) + 1.5)
        fig, ax = plt.subplots(figsize=(fig_w, fig_h), constrained_layout=True)

        im = ax.imshow(normed, cmap="YlGnBu", vmin=0, vmax=1,
                       interpolation="nearest", aspect="auto")

        ax.set_xticks(range(n_r), labels=all_rules, rotation=30, ha="right", fontsize=9)
        ax.set_yticks(range(len(fields)), labels=[f.replace("_", " ") for f in fields], fontsize=9)
        ax.set_xlabel("Rule", fontsize=10)
        ax.set_ylabel("Metric", fontsize=10)

        # Build title from fixed params info
        n_series = self.series_count
        fixed_parts = []
        if len(self.gen_models) == 1:
            fixed_parts.append(f"model={self.gen_models[0]}")
        if len(self.voter_counts) == 1:
            fixed_parts.append(f"n_voters={self.voter_counts[0]}")
        if len(self.candidate_counts) == 1:
            fixed_parts.append(f"n_candidates={self.candidate_counts[0]}")
        desc = " · ".join(fixed_parts) if fixed_parts else f"{n_series} series averaged"
        ax.set_title(
            f"Winner metrics ({stat}) per rule\n{desc}",
            fontsize=11,
        )

        if annotate:
            fs = max(6, min(10, int(120 / max(n_r, 1))))
            for mi in range(len(fields)):
                for ri in range(n_r):
                    val = raw[mi, ri]
                    if not np.isnan(val):
                        cell_norm = normed[mi, ri]
                        txt_color = "white" if cell_norm > 0.65 else "black"
                        ax.text(ri, mi, format(val, fmt),
                                ha="center", va="center",
                                fontsize=fs, color=txt_color)

        cbar = fig.colorbar(
            ScalarMappable(norm=Normalize(0, 1), cmap="YlGnBu"),
            ax=ax, fraction=0.03, pad=0.02, shrink=0.8,
        )
        cbar.set_label("Normalised value (per metric)", fontsize=9)
        cbar.set_ticks([0, 0.5, 1])
        cbar.set_ticklabels(["min", "mid", "max"])

        if save_path is not None:
            os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
            fig.savefig(save_path)
        if show:
            plt.show()
        return ax

    def plot_winner_metric_heatmap(
        self,
        metric_field: str,
        rule_code: str,
        row_param: str = "n_voters",
        col_param: str = "n_candidates",
        *,
        stat: str = "mean",
        ax: Any | None = None,
        annotate: bool = True,
        show: bool = True,
        save_path: str | None = None,
    ) -> Any:
        """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.

        Args:
            metric_field: One of the fields in
                :data:`~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS`
                (e.g. ``"social_acceptability"``, ``"rank_mean"``).
            rule_code: Normalised rule code to inspect (e.g. ``"COPE"``).
            row_param: Row axis — ``"gen_model"``, ``"n_voters"``, or
                ``"n_candidates"``.
            col_param: Column axis (same choices).
            stat: ``"mean"`` (default) or ``"std"``.
            ax: Optional matplotlib Axes.  A new figure is created when *None*.
            annotate: Whether to print cell values on the heatmap.
            show: Whether to call ``plt.show()`` at the end.
            save_path: Optional file path to save the figure.

        Returns:
            The matplotlib Axes used for plotting.
        """
        import matplotlib.pyplot as plt

        pivot, fixed_desc = self.metrics_pivot(
            metric_field, rule_code,
            row_param=row_param, col_param=col_param, stat=stat,
        )
        if pivot.empty:
            raise ValueError(
                f"No data for metric '{metric_field}' / rule '{rule_code}'. "
                "Check that metrics were computed during simulation."
            )

        matrix = pivot.to_numpy(dtype=np.float64)
        row_labels = [str(v) for v in pivot.index]
        col_labels = [str(v) for v in pivot.columns]

        vmin = float(np.nanmin(matrix))
        vmax = float(np.nanmax(matrix))
        margin = (vmax - vmin) * 0.1 or 0.01
        vmin = max(0.0, vmin - margin)
        vmax = min(1.0, vmax + margin) if metric_field not in {"rank_mean", "rank_median", "rank_var", "utility_mean", "utility_median", "utility_var", "n_cowinners"} else vmax + margin

        fig_w = max(6.0, 1.2 * len(col_labels) + 2)
        fig_h = max(4.0, 1.0 * len(row_labels) + 2)
        if ax is None:
            _, ax = plt.subplots(figsize=(fig_w, fig_h), constrained_layout=True)

        image = ax.imshow(
            matrix,
            cmap="YlGnBu",
            vmin=vmin,
            vmax=vmax,
            interpolation="nearest",
            aspect="auto",
        )
        ax.set_xticks(range(len(col_labels)), labels=col_labels)
        ax.set_yticks(range(len(row_labels)), labels=row_labels)
        ax.set_xlabel(col_param)
        ax.set_ylabel(row_param)

        rule_up = rule_code.strip().upper()
        title = f"{metric_field.replace('_', ' ').title()} ({stat}) — {rule_up}"
        if fixed_desc:
            title += f"\n({fixed_desc})"
        ax.set_title(title, fontsize=11)

        if annotate:
            fs = max(6, min(12, int(160 / max(matrix.size, 1))))
            for i in range(matrix.shape[0]):
                for j in range(matrix.shape[1]):
                    val = matrix[i, j]
                    if not np.isnan(val):
                        ax.text(j, i, f"{val:.3f}", ha="center", va="center",
                                fontsize=fs, color="black")

        cbar = ax.figure.colorbar(image, ax=ax, fraction=0.046, pad=0.04, shrink=0.9)
        cbar.set_label(f"{metric_field.replace('_', ' ').title()} ({stat})")

        if save_path is not None:
            fig = ax.figure
            assert isinstance(fig, plt.Figure)
            os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
            fig.savefig(save_path)
        if show:
            plt.show()
        return ax

    def plot_winner_metrics_grid(
        self,
        rule_code: str,
        row_param: str = "n_voters",
        col_param: str = "n_candidates",
        *,
        stat: str = "mean",
        metrics: list[str] | None = None,
        annotate: bool = True,
        show: bool = True,
        save_path: str | None = None,
    ) -> Any:
        """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`.

        Args:
            rule_code: Normalised rule code to inspect (e.g. ``"COPE"``).
            row_param: Row axis — ``"gen_model"``, ``"n_voters"``, or
                ``"n_candidates"``.
            col_param: Column axis (same choices).
            stat: ``"mean"`` (default) or ``"std"``.
            metrics: Explicit list of metric fields to plot.  When *None* all
                fields in :data:`~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS`
                are included.
            annotate: Whether to print cell values on each panel.
            show: Whether to call ``plt.show()`` at the end.
            save_path: Optional file path to save the whole figure.

        Returns:
            The 2-D NumPy array of matplotlib Axes.
        """
        import math
        import matplotlib.pyplot as plt

        fields = list(metrics) if metrics is not None else list(METRIC_FIELDS)

        # Drop metrics with no data
        available = [
            f for f in fields
            if not self.metrics_comparison_frame(f, rule_code, stat=stat).empty
        ]
        if not available:
            raise ValueError(
                f"No winner-metric data found for rule '{rule_code}'. "
                "Check that metrics were computed during simulation."
            )

        n = len(available)
        ncols = min(4, n)
        nrows = math.ceil(n / ncols)

        fig, axes = plt.subplots(
            nrows, ncols,
            figsize=(5 * ncols, 4 * nrows),
            constrained_layout=True,
        )
        # Normalise axes to a flat list
        axes_flat: list[Any] = np.array(axes).flatten().tolist()

        rule_up = rule_code.strip().upper()
        fig.suptitle(
            f"Winner metrics ({stat}) — {rule_up}",
            fontsize=13,
            fontweight="bold",
        )

        for ax_i, field in zip(axes_flat, available):
            try:
                self.plot_winner_metric_heatmap(
                    field, rule_code,
                    row_param=row_param, col_param=col_param,
                    stat=stat, ax=ax_i, annotate=annotate, show=False,
                )
            except ValueError:
                ax_i.set_visible(False)

        # Hide unused axes
        for ax_i in axes_flat[len(available):]:
            ax_i.set_visible(False)

        if save_path is not None:
            os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
            fig.savefig(save_path)
        if show:
            plt.show()
        return axes

    def plot_comparison_grid(
        self,
        vary_param: str = "n_candidates",
        *,
        annotate: bool = True,
        show: bool = True,
        save_path: str | None = None,
    ) -> Any:
        """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")
        """
        import matplotlib.pyplot as plt

        if vary_param not in _PARAM_NAMES:
            raise ValueError(f"Invalid param '{vary_param}'. Choose from {sorted(_PARAM_NAMES)}")

        fixed_params = _PARAM_NAMES - {vary_param}

        vary_values = sorted({getattr(k, vary_param) for k in self._entries})
        n = len(vary_values)
        if n == 0:
            raise ValueError("No series to plot.")

        fig, axes = plt.subplots(
            1,
            n,
            figsize=(6 * n + 1, 6),
            constrained_layout=True,
        )
        if n == 1:
            axes = [axes]

        for ax_i, val in zip(axes, vary_values, strict=True):
            matching = [s for k, s in self._entries.items() if getattr(k, vary_param) == val]
            if not matching:
                continue
            # Average distance matrices when multiple series match
            avg_matrix = np.mean(
                np.stack([s.mean_distance_matrix for s in matching]),
                axis=0,
            )
            labels = matching[0]._rule_order
            subtitle = f"{vary_param}={val}"
            if len(matching) > 1:
                subtitle += f" (avg. {len(matching)})"
            _plot_heatmap(
                avg_matrix,
                labels,
                subtitle,
                ax=ax_i,
                annotate=annotate,
                annotation_fmt=".1f",
                colorbar_label="Mean distance (%)",
                show=False,
            )

        # Build description of fixed parameters
        fixed_parts: list[str] = []
        for p in sorted(fixed_params):
            vals = sorted({getattr(k, p) for k in self._entries}, key=str)
            if len(vals) == 1:
                fixed_parts.append(f"{p}={vals[0]}")
            else:
                fixed_parts.append(f"{p}: averaged")
        fixed_desc = " \u00b7 ".join(fixed_parts)

        fig.suptitle(
            f"Rule distance comparison\n{fixed_desc}",
            fontsize=13,
        )

        if save_path is not None:
            os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
            fig.savefig(save_path)
        if show:
            plt.show()

        return axes

    # ------------------------------------------------------------------
    # Persistence
    # ------------------------------------------------------------------

    def save_to_dir(self, dir_path: str) -> None:
        """Persist every series as ``<label>.parquet`` inside *dir_path*."""
        os.makedirs(dir_path, exist_ok=True)
        for _key, series in self._entries.items():
            filename = f"{series.config.label}.parquet"
            series.save_to_file(os.path.join(dir_path, filename))

    @classmethod
    def load_from_dir(cls, dir_path: str) -> SimulationTotalResult:
        """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`.
        """
        import glob as _glob

        total = cls()
        paths = sorted(_glob.glob(os.path.join(dir_path, "*.parquet")))
        if not paths:
            raise ValueError(f"No .parquet files found in {dir_path!r}")
        for path in paths:
            series = SimulationSeriesResult()
            series.load_from_file(path)
            total.add_series(series)
        return total

    @staticmethod
    def delete_dir(dir_path: str) -> bool:
        """Remove a saved total-result directory.

        Returns ``True`` if the directory existed and was deleted.
        """
        import shutil

        try:
            shutil.rmtree(dir_path)
            return True
        except FileNotFoundError:
            return False

    # Private helpers

    @staticmethod
    def _validate_axis_params(row_param: str, col_param: str) -> None:
        """Ensure *row_param* and *col_param* are valid and distinct."""
        if row_param not in _PARAM_NAMES:
            raise ValueError(f"Invalid row_param '{row_param}'. Choose from {sorted(_PARAM_NAMES)}")
        if col_param not in _PARAM_NAMES:
            raise ValueError(f"Invalid col_param '{col_param}'. Choose from {sorted(_PARAM_NAMES)}")
        if row_param == col_param:
            raise ValueError("row_param and col_param must be different.")

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__()

Iterate over (key, series) pairs in sorted key order.

Source code in src/vote_simulation/models/results/total_result.py
def __iter__(self):  # noqa: ANN204
    """Iterate over ``(key, series)`` pairs in sorted key order."""
    yield from sorted(self._entries.items())

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
def add_series(self, series: SimulationSeriesResult) -> None:
    """Register a series result.

    Raises:
        ValueError: If a series with the same key is already present.
    """
    key = _extract_key(series)
    if key in self._entries:
        raise ValueError(f"Duplicate series key {key!r}. Use replace_series() to overwrite.")
    self._entries[key] = series

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
@staticmethod
def delete_dir(dir_path: str) -> bool:
    """Remove a saved total-result directory.

    Returns ``True`` if the directory existed and was deleted.
    """
    import shutil

    try:
        shutil.rmtree(dir_path)
        return True
    except FileNotFoundError:
        return False

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
def filter(
    self,
    *,
    gen_model: str | None = None,
    n_voters: int | None = None,
    n_candidates: int | None = None,
) -> SimulationTotalResult:
    """Return a new instance containing only the matching series.

    Series objects are shared (shallow copy), not deep-copied.
    """
    result = SimulationTotalResult()
    for key, series in self._entries.items():
        if gen_model is not None and key.gen_model != gen_model:
            continue
        if n_voters is not None and key.n_voters != n_voters:
            continue
        if n_candidates is not None and key.n_candidates != n_candidates:
            continue
        result._entries[key] = series
    return result

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
def get_series(self, gen_model: str, n_voters: int, n_candidates: int) -> SimulationSeriesResult:
    """Retrieve a single series by its parameter triple.

    Raises:
        KeyError: If no matching series exists.
    """
    key = SeriesKey(gen_model, n_voters, n_candidates)
    try:
        return self._entries[key]
    except KeyError:
        raise KeyError(f"No series for {key!r}") from None

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
@classmethod
def load_from_dir(cls, dir_path: str) -> SimulationTotalResult:
    """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`.
    """
    import glob as _glob

    total = cls()
    paths = sorted(_glob.glob(os.path.join(dir_path, "*.parquet")))
    if not paths:
        raise ValueError(f"No .parquet files found in {dir_path!r}")
    for path in paths:
        series = SimulationSeriesResult()
        series.load_from_file(path)
        total.add_series(series)
    return total

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:summary_frame (e.g. "mean_distance", "most_distant_distance").

'mean_distance'

Returns:

Type Description
DataFrame

(pivot_df, fixed_description) — the pivot DataFrame and a

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
def metric_matrix(
    self,
    row_param: str = "n_voters",
    col_param: str = "n_candidates",
    *,
    metric: str = "mean_distance",
) -> tuple[pd.DataFrame, str]:
    """Pivot a scalar metric into a 2D matrix.

    Args:
        row_param: Key field for the row axis.
        col_param: Key field for the column axis.
        metric: Column name from :meth:`summary_frame`
            (e.g. ``"mean_distance"``, ``"most_distant_distance"``).

    Returns:
        ``(pivot_df, fixed_description)`` — the pivot DataFrame and a
        human-readable description of the fixed (third) parameter.

    Raises:
        ValueError: If the third parameter has multiple distinct values.
    """
    self._validate_axis_params(row_param, col_param)

    third = next(iter(_PARAM_NAMES - {row_param, col_param}))
    third_vals = {getattr(k, third) for k in self._entries}
    if len(third_vals) > 1:
        raise ValueError(
            f"Parameter '{third}' has {len(third_vals)} distinct values "
            f"{third_vals}. Call .filter({third}=<value>) first."
        )

    fixed_desc = f"{third}={next(iter(third_vals))}" if third_vals else ""

    df = self.summary_frame()
    pivot = df.pivot_table(
        index=row_param,
        columns=col_param,
        values=metric,
        aggfunc="mean",
    )
    return pivot, fixed_desc

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
def metrics_comparison_frame(
    self,
    metric_field: str,
    rule_code: str,
    stat: str = "mean",
) -> pd.DataFrame:
    """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.
    """
    col = f"{metric_field}_{stat}"
    rule_up = rule_code.strip().upper()
    rows: list[dict[str, Any]] = []
    for key in sorted(self._entries):
        series = self._entries[key]
        frame = series.metrics_summary_frame
        if frame.empty or rule_up not in frame.index or col not in frame.columns:
            continue
        rows.append(
            {
                "gen_model": key.gen_model,
                "n_voters": key.n_voters,
                "n_candidates": key.n_candidates,
                col: float(frame.loc[rule_up, col]),
            }
        )
    return pd.DataFrame(rows)

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
def metrics_pivot(
    self,
    metric_field: str,
    rule_code: str,
    row_param: str = "n_voters",
    col_param: str = "n_candidates",
    stat: str = "mean",
) -> tuple[pd.DataFrame, str]:
    """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.
    """
    self._validate_axis_params(row_param, col_param)
    col = f"{metric_field}_{stat}"
    df = self.metrics_comparison_frame(metric_field, rule_code, stat=stat)
    if df.empty:
        return pd.DataFrame(), ""
    third = next(iter(_PARAM_NAMES - {row_param, col_param}))
    third_vals = {str(v) for v in df[third].unique()}
    fixed_desc = f"{third}={', '.join(sorted(third_vals))}" if third_vals else ""
    pivot = df.pivot_table(index=row_param, columns=col_param, values=col, aggfunc="mean")
    return pivot, fixed_desc

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
def plot_comparison_grid(
    self,
    vary_param: str = "n_candidates",
    *,
    annotate: bool = True,
    show: bool = True,
    save_path: str | None = None,
) -> Any:
    """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")
    """
    import matplotlib.pyplot as plt

    if vary_param not in _PARAM_NAMES:
        raise ValueError(f"Invalid param '{vary_param}'. Choose from {sorted(_PARAM_NAMES)}")

    fixed_params = _PARAM_NAMES - {vary_param}

    vary_values = sorted({getattr(k, vary_param) for k in self._entries})
    n = len(vary_values)
    if n == 0:
        raise ValueError("No series to plot.")

    fig, axes = plt.subplots(
        1,
        n,
        figsize=(6 * n + 1, 6),
        constrained_layout=True,
    )
    if n == 1:
        axes = [axes]

    for ax_i, val in zip(axes, vary_values, strict=True):
        matching = [s for k, s in self._entries.items() if getattr(k, vary_param) == val]
        if not matching:
            continue
        # Average distance matrices when multiple series match
        avg_matrix = np.mean(
            np.stack([s.mean_distance_matrix for s in matching]),
            axis=0,
        )
        labels = matching[0]._rule_order
        subtitle = f"{vary_param}={val}"
        if len(matching) > 1:
            subtitle += f" (avg. {len(matching)})"
        _plot_heatmap(
            avg_matrix,
            labels,
            subtitle,
            ax=ax_i,
            annotate=annotate,
            annotation_fmt=".1f",
            colorbar_label="Mean distance (%)",
            show=False,
        )

    # Build description of fixed parameters
    fixed_parts: list[str] = []
    for p in sorted(fixed_params):
        vals = sorted({getattr(k, p) for k in self._entries}, key=str)
        if len(vals) == 1:
            fixed_parts.append(f"{p}={vals[0]}")
        else:
            fixed_parts.append(f"{p}: averaged")
    fixed_desc = " \u00b7 ".join(fixed_parts)

    fig.suptitle(
        f"Rule distance comparison\n{fixed_desc}",
        fontsize=13,
    )

    if save_path is not None:
        os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
        fig.savefig(save_path)
    if show:
        plt.show()

    return axes

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
def plot_metric_heatmap(
    self,
    row_param: str = "n_voters",
    col_param: str = "n_candidates",
    *,
    metric: str = "mean_distance",
    ax: Any | None = None,
    annotate: bool = True,
    show: bool = True,
    save_path: str | None = None,
) -> Any:
    """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.
    """
    import matplotlib.pyplot as plt

    pivot, fixed_desc = self.metric_matrix(row_param, col_param, metric=metric)
    matrix = pivot.to_numpy(dtype=np.float64)
    row_labels = [str(v) for v in pivot.index]
    col_labels = [str(v) for v in pivot.columns]

    vmin = float(np.nanmin(matrix))
    vmax = float(np.nanmax(matrix))
    margin = (vmax - vmin) * 0.1 or 1.0
    vmin = max(0.0, vmin - margin)
    vmax = vmax + margin

    fig_w = max(6.0, 1.2 * len(col_labels) + 2)
    fig_h = max(4.0, 1.0 * len(row_labels) + 2)
    if ax is None:
        _, ax = plt.subplots(
            figsize=(fig_w, fig_h),
            constrained_layout=True,
        )

    image = ax.imshow(
        matrix,
        cmap="YlOrRd",
        vmin=vmin,
        vmax=vmax,
        interpolation="nearest",
        aspect="auto",
    )
    ax.set_xticks(range(len(col_labels)), labels=col_labels)
    ax.set_yticks(range(len(row_labels)), labels=row_labels)
    ax.set_xlabel(col_param)
    ax.set_ylabel(row_param)

    title = metric.replace("_", " ").title()
    if fixed_desc:
        title += f"\n({fixed_desc})"
    ax.set_title(title, fontsize=11)

    if annotate:
        fs = max(6, min(12, int(160 / max(matrix.size, 1))))
        for i in range(matrix.shape[0]):
            for j in range(matrix.shape[1]):
                val = matrix[i, j]
                if not np.isnan(val):
                    ax.text(
                        j,
                        i,
                        f"{val:.1f}",
                        ha="center",
                        va="center",
                        fontsize=fs,
                        color="black",
                    )

    cbar = ax.figure.colorbar(
        image,
        ax=ax,
        fraction=0.046,
        pad=0.04,
        shrink=0.9,
    )
    cbar.set_label(metric.replace("_", " ").title())

    if save_path is not None:
        fig = ax.figure
        assert isinstance(fig, plt.Figure)
        os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
        fig.savefig(save_path)
    if show:
        plt.show()

    return ax

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" (default) or "std".

'mean'
metrics list[str] | None

Explicit list of metric fields (rows). When None all fields in :data:~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS are included.

None
annotate bool

Whether to print raw values inside each cell.

True
fmt str

Format string used for annotations (e.g. ".3f").

'.3f'
show bool

Whether to call plt.show() at the end.

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
def plot_metrics_rules_matrix(
    self,
    row_param: str = "n_voters",
    col_param: str = "n_candidates",
    *,
    stat: str = "mean",
    metrics: list[str] | None = None,
    annotate: bool = True,
    fmt: str = ".3f",
    show: bool = True,
    save_path: str | None = None,
) -> Any:
    """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.

    Args:
        row_param: Used only to derive a description of fixed parameters
            in the title.  Filtering is the recommended way to narrow down
            the data.
        col_param: Same as *row_param*.
        stat: ``"mean"`` (default) or ``"std"``.
        metrics: Explicit list of metric fields (rows).  When *None* all
            fields in :data:`~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS`
            are included.
        annotate: Whether to print raw values inside each cell.
        fmt: Format string used for annotations (e.g. ``\".3f\"``).
        show: Whether to call ``plt.show()`` at the end.
        save_path: Optional file path to save the figure.

    Returns:
        The matplotlib Axes used for plotting.
    """
    import matplotlib.pyplot as plt
    from matplotlib.colors import Normalize
    from matplotlib.cm import ScalarMappable

    fields = list(metrics) if metrics is not None else list(METRIC_FIELDS)

    # Collect per-rule means across all series
    # Discover all rules present in any series
    all_rules: list[str] = []
    for series in self._entries.values():
        frame = series.metrics_summary_frame
        if not frame.empty:
            for r in frame.index:
                if r not in all_rules:
                    all_rules.append(r)

    if not all_rules:
        raise ValueError(
            "No winner-metric data found. "
            "Check that metrics were computed during simulation."
        )

    # Build raw matrix: shape (n_metrics, n_rules)
    # Average over all series
    n_m = len(fields)
    n_r = len(all_rules)
    raw = np.full((n_m, n_r), np.nan)

    for s_idx, series in enumerate(self._entries.values()):
        frame = series.metrics_summary_frame
        if frame.empty:
            continue
        for ri, rule in enumerate(all_rules):
            if rule not in frame.index:
                continue
            for mi, field in enumerate(fields):
                col = f"{field}_{stat}"
                if col not in frame.columns:
                    continue
                val = float(frame.loc[rule, col])
                if np.isnan(raw[mi, ri]):
                    raw[mi, ri] = val
                else:
                    raw[mi, ri] = (raw[mi, ri] * s_idx + val) / (s_idx + 1)

    # Drop metric rows that are entirely NaN
    valid_mask = ~np.all(np.isnan(raw), axis=1)
    fields = [f for f, v in zip(fields, valid_mask) if v]
    raw = raw[valid_mask]

    if len(fields) == 0:
        raise ValueError("No valid metric data to plot.")

    # Row-normalise: each row scaled to [0, 1]
    row_min = np.nanmin(raw, axis=1, keepdims=True)
    row_max = np.nanmax(raw, axis=1, keepdims=True)
    row_range = row_max - row_min
    row_range[row_range == 0] = 1.0  # avoid division by zero for constant rows
    normed = (raw - row_min) / row_range

    fig_w = max(8.0, 1.4 * n_r + 2)
    fig_h = max(5.0, 0.6 * len(fields) + 1.5)
    fig, ax = plt.subplots(figsize=(fig_w, fig_h), constrained_layout=True)

    im = ax.imshow(normed, cmap="YlGnBu", vmin=0, vmax=1,
                   interpolation="nearest", aspect="auto")

    ax.set_xticks(range(n_r), labels=all_rules, rotation=30, ha="right", fontsize=9)
    ax.set_yticks(range(len(fields)), labels=[f.replace("_", " ") for f in fields], fontsize=9)
    ax.set_xlabel("Rule", fontsize=10)
    ax.set_ylabel("Metric", fontsize=10)

    # Build title from fixed params info
    n_series = self.series_count
    fixed_parts = []
    if len(self.gen_models) == 1:
        fixed_parts.append(f"model={self.gen_models[0]}")
    if len(self.voter_counts) == 1:
        fixed_parts.append(f"n_voters={self.voter_counts[0]}")
    if len(self.candidate_counts) == 1:
        fixed_parts.append(f"n_candidates={self.candidate_counts[0]}")
    desc = " · ".join(fixed_parts) if fixed_parts else f"{n_series} series averaged"
    ax.set_title(
        f"Winner metrics ({stat}) per rule\n{desc}",
        fontsize=11,
    )

    if annotate:
        fs = max(6, min(10, int(120 / max(n_r, 1))))
        for mi in range(len(fields)):
            for ri in range(n_r):
                val = raw[mi, ri]
                if not np.isnan(val):
                    cell_norm = normed[mi, ri]
                    txt_color = "white" if cell_norm > 0.65 else "black"
                    ax.text(ri, mi, format(val, fmt),
                            ha="center", va="center",
                            fontsize=fs, color=txt_color)

    cbar = fig.colorbar(
        ScalarMappable(norm=Normalize(0, 1), cmap="YlGnBu"),
        ax=ax, fraction=0.03, pad=0.02, shrink=0.8,
    )
    cbar.set_label("Normalised value (per metric)", fontsize=9)
    cbar.set_ticks([0, 0.5, 1])
    cbar.set_ticklabels(["min", "mid", "max"])

    if save_path is not None:
        os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
        fig.savefig(save_path)
    if show:
        plt.show()
    return ax

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
def plot_rule_pair_heatmap(
    self,
    rule_a: str,
    rule_b: str,
    row_param: str = "n_voters",
    col_param: str = "n_candidates",
    *,
    ax: Any | None = None,
    annotate: bool = True,
    show: bool = True,
    save_path: str | None = None,
) -> Any:
    """Heatmap of one rule-pair distance across two parameters."""
    import matplotlib.pyplot as plt

    self._validate_axis_params(row_param, col_param)

    df = self.rule_pair_frame(rule_a, rule_b)
    third = next(iter(_PARAM_NAMES - {row_param, col_param}))
    third_vals = df[third].unique()
    if len(third_vals) > 1:
        raise ValueError(f"Parameter '{third}' has {len(third_vals)} values. Call .filter({third}=<value>) first.")

    pivot = df.pivot_table(
        index=row_param,
        columns=col_param,
        values="distance",
        aggfunc="mean",
    )
    matrix = pivot.to_numpy(dtype=np.float64)
    row_labels = [str(v) for v in pivot.index]
    col_labels = [str(v) for v in pivot.columns]

    fig_w = max(6.0, 1.2 * len(col_labels) + 2)
    fig_h = max(4.0, 1.0 * len(row_labels) + 2)
    if ax is None:
        _, ax = plt.subplots(
            figsize=(fig_w, fig_h),
            constrained_layout=True,
        )

    image = ax.imshow(
        matrix,
        cmap="Reds",
        vmin=0,
        vmax=100,
        interpolation="nearest",
        aspect="auto",
    )
    ax.set_xticks(range(len(col_labels)), labels=col_labels)
    ax.set_yticks(range(len(row_labels)), labels=row_labels)
    ax.set_xlabel(col_param)
    ax.set_ylabel(row_param)

    a_up, b_up = rule_a.strip().upper(), rule_b.strip().upper()
    title = f"Distance: {a_up} \u2194 {b_up}"
    if len(third_vals) == 1:
        title += f"\n({third}={third_vals[0]})"
    ax.set_title(title, fontsize=11)

    if annotate:
        fs = max(6, min(12, int(160 / max(matrix.size, 1))))
        for i in range(matrix.shape[0]):
            for j in range(matrix.shape[1]):
                val = matrix[i, j]
                if not np.isnan(val):
                    ax.text(
                        j,
                        i,
                        f"{val:.1f}",
                        ha="center",
                        va="center",
                        fontsize=fs,
                        color="black",
                    )

    cbar = ax.figure.colorbar(
        image,
        ax=ax,
        fraction=0.046,
        pad=0.04,
        shrink=0.9,
    )
    cbar.set_label("Mean distance (%)")

    if save_path is not None:
        fig = ax.figure
        assert isinstance(fig, plt.Figure)
        os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
        fig.savefig(save_path)
    if show:
        plt.show()

    return ax

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:~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS (e.g. "social_acceptability", "rank_mean").

required
rule_code str

Normalised rule code to inspect (e.g. "COPE").

required
row_param str

Row axis — "gen_model", "n_voters", or "n_candidates".

'n_voters'
col_param str

Column axis (same choices).

'n_candidates'
stat str

"mean" (default) or "std".

'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 plt.show() at the end.

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
def plot_winner_metric_heatmap(
    self,
    metric_field: str,
    rule_code: str,
    row_param: str = "n_voters",
    col_param: str = "n_candidates",
    *,
    stat: str = "mean",
    ax: Any | None = None,
    annotate: bool = True,
    show: bool = True,
    save_path: str | None = None,
) -> Any:
    """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.

    Args:
        metric_field: One of the fields in
            :data:`~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS`
            (e.g. ``"social_acceptability"``, ``"rank_mean"``).
        rule_code: Normalised rule code to inspect (e.g. ``"COPE"``).
        row_param: Row axis — ``"gen_model"``, ``"n_voters"``, or
            ``"n_candidates"``.
        col_param: Column axis (same choices).
        stat: ``"mean"`` (default) or ``"std"``.
        ax: Optional matplotlib Axes.  A new figure is created when *None*.
        annotate: Whether to print cell values on the heatmap.
        show: Whether to call ``plt.show()`` at the end.
        save_path: Optional file path to save the figure.

    Returns:
        The matplotlib Axes used for plotting.
    """
    import matplotlib.pyplot as plt

    pivot, fixed_desc = self.metrics_pivot(
        metric_field, rule_code,
        row_param=row_param, col_param=col_param, stat=stat,
    )
    if pivot.empty:
        raise ValueError(
            f"No data for metric '{metric_field}' / rule '{rule_code}'. "
            "Check that metrics were computed during simulation."
        )

    matrix = pivot.to_numpy(dtype=np.float64)
    row_labels = [str(v) for v in pivot.index]
    col_labels = [str(v) for v in pivot.columns]

    vmin = float(np.nanmin(matrix))
    vmax = float(np.nanmax(matrix))
    margin = (vmax - vmin) * 0.1 or 0.01
    vmin = max(0.0, vmin - margin)
    vmax = min(1.0, vmax + margin) if metric_field not in {"rank_mean", "rank_median", "rank_var", "utility_mean", "utility_median", "utility_var", "n_cowinners"} else vmax + margin

    fig_w = max(6.0, 1.2 * len(col_labels) + 2)
    fig_h = max(4.0, 1.0 * len(row_labels) + 2)
    if ax is None:
        _, ax = plt.subplots(figsize=(fig_w, fig_h), constrained_layout=True)

    image = ax.imshow(
        matrix,
        cmap="YlGnBu",
        vmin=vmin,
        vmax=vmax,
        interpolation="nearest",
        aspect="auto",
    )
    ax.set_xticks(range(len(col_labels)), labels=col_labels)
    ax.set_yticks(range(len(row_labels)), labels=row_labels)
    ax.set_xlabel(col_param)
    ax.set_ylabel(row_param)

    rule_up = rule_code.strip().upper()
    title = f"{metric_field.replace('_', ' ').title()} ({stat}) — {rule_up}"
    if fixed_desc:
        title += f"\n({fixed_desc})"
    ax.set_title(title, fontsize=11)

    if annotate:
        fs = max(6, min(12, int(160 / max(matrix.size, 1))))
        for i in range(matrix.shape[0]):
            for j in range(matrix.shape[1]):
                val = matrix[i, j]
                if not np.isnan(val):
                    ax.text(j, i, f"{val:.3f}", ha="center", va="center",
                            fontsize=fs, color="black")

    cbar = ax.figure.colorbar(image, ax=ax, fraction=0.046, pad=0.04, shrink=0.9)
    cbar.set_label(f"{metric_field.replace('_', ' ').title()} ({stat})")

    if save_path is not None:
        fig = ax.figure
        assert isinstance(fig, plt.Figure)
        os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
        fig.savefig(save_path)
    if show:
        plt.show()
    return ax

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. "COPE").

required
row_param str

Row axis — "gen_model", "n_voters", or "n_candidates".

'n_voters'
col_param str

Column axis (same choices).

'n_candidates'
stat str

"mean" (default) or "std".

'mean'
metrics list[str] | None

Explicit list of metric fields to plot. When None all fields in :data:~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS are included.

None
annotate bool

Whether to print cell values on each panel.

True
show bool

Whether to call plt.show() at the end.

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
def plot_winner_metrics_grid(
    self,
    rule_code: str,
    row_param: str = "n_voters",
    col_param: str = "n_candidates",
    *,
    stat: str = "mean",
    metrics: list[str] | None = None,
    annotate: bool = True,
    show: bool = True,
    save_path: str | None = None,
) -> Any:
    """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`.

    Args:
        rule_code: Normalised rule code to inspect (e.g. ``"COPE"``).
        row_param: Row axis — ``"gen_model"``, ``"n_voters"``, or
            ``"n_candidates"``.
        col_param: Column axis (same choices).
        stat: ``"mean"`` (default) or ``"std"``.
        metrics: Explicit list of metric fields to plot.  When *None* all
            fields in :data:`~vote_simulation.models.rules.winner_metrics.METRIC_FIELDS`
            are included.
        annotate: Whether to print cell values on each panel.
        show: Whether to call ``plt.show()`` at the end.
        save_path: Optional file path to save the whole figure.

    Returns:
        The 2-D NumPy array of matplotlib Axes.
    """
    import math
    import matplotlib.pyplot as plt

    fields = list(metrics) if metrics is not None else list(METRIC_FIELDS)

    # Drop metrics with no data
    available = [
        f for f in fields
        if not self.metrics_comparison_frame(f, rule_code, stat=stat).empty
    ]
    if not available:
        raise ValueError(
            f"No winner-metric data found for rule '{rule_code}'. "
            "Check that metrics were computed during simulation."
        )

    n = len(available)
    ncols = min(4, n)
    nrows = math.ceil(n / ncols)

    fig, axes = plt.subplots(
        nrows, ncols,
        figsize=(5 * ncols, 4 * nrows),
        constrained_layout=True,
    )
    # Normalise axes to a flat list
    axes_flat: list[Any] = np.array(axes).flatten().tolist()

    rule_up = rule_code.strip().upper()
    fig.suptitle(
        f"Winner metrics ({stat}) — {rule_up}",
        fontsize=13,
        fontweight="bold",
    )

    for ax_i, field in zip(axes_flat, available):
        try:
            self.plot_winner_metric_heatmap(
                field, rule_code,
                row_param=row_param, col_param=col_param,
                stat=stat, ax=ax_i, annotate=annotate, show=False,
            )
        except ValueError:
            ax_i.set_visible(False)

    # Hide unused axes
    for ax_i in axes_flat[len(available):]:
        ax_i.set_visible(False)

    if save_path is not None:
        os.makedirs(os.path.dirname(os.path.abspath(save_path)), exist_ok=True)
        fig.savefig(save_path)
    if show:
        plt.show()
    return axes

replace_series(series)

Add or overwrite a series at its config key.

Source code in src/vote_simulation/models/results/total_result.py
def replace_series(self, series: SimulationSeriesResult) -> None:
    """Add or overwrite a series at its config key."""
    key = _extract_key(series)
    self._entries[key] = 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
def rule_pair_frame(self, rule_a: str, rule_b: str) -> pd.DataFrame:
    """Mean distance between two rules in every series.

    Returns a DataFrame with columns ``gen_model``, ``n_voters``,
    ``n_candidates``, ``distance``.
    """
    a, b = rule_a.strip().upper(), rule_b.strip().upper()
    rows: list[dict[str, Any]] = []
    for key in sorted(self._entries):
        series = self._entries[key]
        mat = series.mean_distance_matrix_frame
        if a in mat.index and b in mat.columns:
            dist = float(mat.loc[a, b])
        else:
            dist = float("nan")
        rows.append(
            {
                "gen_model": key.gen_model,
                "n_voters": key.n_voters,
                "n_candidates": key.n_candidates,
                "distance": dist,
            }
        )
    return pd.DataFrame(rows)

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
def save_to_dir(self, dir_path: str) -> None:
    """Persist every series as ``<label>.parquet`` inside *dir_path*."""
    os.makedirs(dir_path, exist_ok=True)
    for _key, series in self._entries.items():
        filename = f"{series.config.label}.parquet"
        series.save_to_file(os.path.join(dir_path, filename))

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.

Source code in src/vote_simulation/models/results/total_result.py
def summary_frame(self) -> pd.DataFrame:
    """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``.
    """
    rows: list[dict[str, Any]] = []
    for key in sorted(self._entries):
        series = self._entries[key]
        r_a, r_b, dist = series.most_distant_rules
        rows.append(
            {
                "gen_model": key.gen_model,
                "n_voters": key.n_voters,
                "n_candidates": key.n_candidates,
                "step_count": series.step_count,
                "n_iterations": series.config.n_iterations,
                "mean_distance": series.mean_distance,
                "most_distant_rule_a": r_a,
                "most_distant_rule_b": r_b,
                "most_distant_distance": dist,
            }
        )
    return pd.DataFrame(rows)