@yipe/dice 0.5.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/dist/builder/ac.d.ts +25 -0
  2. package/dist/builder/ac.d.ts.map +1 -0
  3. package/dist/builder/ast.d.ts +9 -0
  4. package/dist/builder/ast.d.ts.map +1 -0
  5. package/dist/builder/attack.d.ts +41 -0
  6. package/dist/builder/attack.d.ts.map +1 -0
  7. package/dist/builder/d20.d.ts +6 -0
  8. package/dist/builder/d20.d.ts.map +1 -0
  9. package/dist/builder/dc.d.ts +26 -0
  10. package/dist/builder/dc.d.ts.map +1 -0
  11. package/dist/builder/example.d.ts +356 -0
  12. package/dist/builder/example.d.ts.map +1 -0
  13. package/dist/builder/factory.d.ts +17 -0
  14. package/dist/builder/factory.d.ts.map +1 -0
  15. package/dist/builder/index.cjs +172 -285
  16. package/dist/builder/index.cjs.map +1 -1
  17. package/dist/builder/index.d.ts +8 -429
  18. package/dist/builder/index.d.ts.map +1 -0
  19. package/dist/builder/index.js +172 -285
  20. package/dist/builder/index.js.map +1 -1
  21. package/dist/builder/nodes.d.ts +61 -0
  22. package/dist/builder/nodes.d.ts.map +1 -0
  23. package/dist/builder/prob.d.ts +3 -0
  24. package/dist/builder/prob.d.ts.map +1 -0
  25. package/dist/builder/roll.d.ts +205 -0
  26. package/dist/builder/roll.d.ts.map +1 -0
  27. package/dist/builder/save.d.ts +19 -0
  28. package/dist/builder/save.d.ts.map +1 -0
  29. package/dist/builder/types.d.ts +66 -0
  30. package/dist/builder/types.d.ts.map +1 -0
  31. package/dist/common/bounce.d.ts +32 -0
  32. package/dist/common/bounce.d.ts.map +1 -0
  33. package/dist/common/errors.d.ts +26 -0
  34. package/dist/common/errors.d.ts.map +1 -0
  35. package/dist/common/lru-cache.d.ts +17 -0
  36. package/dist/common/lru-cache.d.ts.map +1 -0
  37. package/dist/common/types.d.ts +65 -0
  38. package/dist/common/types.d.ts.map +1 -0
  39. package/dist/index.cjs +152 -285
  40. package/dist/index.cjs.map +1 -1
  41. package/dist/index.d.ts +9 -111
  42. package/dist/index.d.ts.map +1 -0
  43. package/dist/index.js +152 -285
  44. package/dist/index.js.map +1 -1
  45. package/dist/parser/dice.d.ts +70 -0
  46. package/dist/parser/dice.d.ts.map +1 -0
  47. package/dist/parser/parser.d.ts +14 -0
  48. package/dist/parser/parser.d.ts.map +1 -0
  49. package/dist/pmf/mixture.d.ts +37 -0
  50. package/dist/pmf/mixture.d.ts.map +1 -0
  51. package/dist/pmf/pmf.d.ts +449 -0
  52. package/dist/pmf/pmf.d.ts.map +1 -0
  53. package/dist/{pmf-D5VRghZI.d.cts → pmf/query.d.ts} +18 -548
  54. package/dist/pmf/query.d.ts.map +1 -0
  55. package/package.json +16 -15
  56. package/.claude/worktrees/amazing-matsumoto-27220c/LICENSE +0 -21
  57. package/.claude/worktrees/amazing-matsumoto-27220c/README.md +0 -518
  58. package/.claude/worktrees/vibrant-lovelace-0cc9e7/LICENSE +0 -21
  59. package/.claude/worktrees/vibrant-lovelace-0cc9e7/README.md +0 -518
  60. package/.claude/worktrees/wizardly-mclean-e375de/LICENSE +0 -21
  61. package/.claude/worktrees/wizardly-mclean-e375de/README.md +0 -518
  62. package/CHANGELOG.md +0 -239
  63. package/dist/builder/index.d.cts +0 -429
  64. package/dist/index.d.cts +0 -111
  65. package/dist/pmf-D5VRghZI.d.ts +0 -1129
@@ -45,6 +45,26 @@ var LRUCache = class {
45
45
  // src/common/types.ts
46
46
  var EPS = 1e-12;
47
47
  var MISS_NONE_OUTCOME = "missNone";
48
+ var ALL_OUTCOME_TYPES = [
49
+ "missNone",
50
+ "missDamage",
51
+ "saveFail",
52
+ "saveHalf",
53
+ "pc",
54
+ "hit",
55
+ "crit"
56
+ ];
57
+ function sortOutcomes(outcomes, order = ALL_OUTCOME_TYPES) {
58
+ const rank = new Map(order.map((o, i) => [o, i]));
59
+ return [...outcomes].sort((a, b) => {
60
+ const ra = rank.get(a);
61
+ const rb = rank.get(b);
62
+ if (ra !== void 0 && rb !== void 0) return ra - rb;
63
+ if (ra !== void 0) return -1;
64
+ if (rb !== void 0) return 1;
65
+ return a.localeCompare(b);
66
+ });
67
+ }
48
68
 
49
69
  // src/pmf/query.ts
50
70
  var _DiceQuery = class _DiceQuery {
@@ -91,7 +111,7 @@ var _DiceQuery = class _DiceQuery {
91
111
  * const attack = d20.plus(5).ac(15).onHit(d(2,6).plus(3)).onCrit(d(2,6))
92
112
  * const query = attack.toQuery()
93
113
  * const pmf = query.combinedWithAttribution()
94
- * // Now pmf can be used with toDamageAttributionChartSeries()
114
+ * // Now pmf can be used with attributionByValue() / damageAttributionChartModel()
95
115
  */
96
116
  combinedWithAttribution() {
97
117
  if (this._combinedWithAttr) {
@@ -117,6 +137,14 @@ var _DiceQuery = class _DiceQuery {
117
137
  attributionByValue() {
118
138
  return this.combinedWithAttribution().attributionByValue();
119
139
  }
140
+ /**
141
+ * Full numeric model for the stacked damage-attribution chart. Convenience for
142
+ * `combinedWithAttribution().damageAttributionChartModel(options)`; see
143
+ * {@link PMF.damageAttributionChartModel}.
144
+ */
145
+ damageAttributionChartModel(options) {
146
+ return this.combinedWithAttribution().damageAttributionChartModel(options);
147
+ }
120
148
  /**
121
149
  * How many of the independent single PMFs can produce the given outcome
122
150
  * label. Useful for "all of them succeeded" style probabilities where the
@@ -721,290 +749,6 @@ var _DiceQuery = class _DiceQuery {
721
749
  }));
722
750
  return { labels: damageValues, datasets };
723
751
  }
724
- /**
725
- * Returns pure mathematical data for attribution charts showing outcome contributions.
726
- *
727
- * Automatically discovers all outcome types present in the PMF, applies filtering rules,
728
- * and returns proportional data suitable for stacked visualization.
729
- *
730
- * @param options Configuration options
731
- * @param options.stackOrder Preferred order for outcome types (unknowns placed at end)
732
- * @param options.filterRules Function to determine if outcome should be included for a given damage value
733
- * @param options.asPercentages Whether to return percentages (0-100) or probabilities (0-1)
734
- * @returns Pure data structure with support, outcomes, and proportional data
735
- *
736
- * @example
737
- * query.toAttributionChartSeries()
738
- * // → {support: [0, 6, 12], outcomes: ['hit', 'crit'], data: {hit: [5.2, 8.1, ...], crit: [0, 2.3, ...]}}
739
- */
740
- toAttributionChartSeries(options = {}) {
741
- const {
742
- stackOrder = [
743
- "missNone",
744
- "missDamage",
745
- "saveFail",
746
- "saveHalf",
747
- "pc",
748
- "hit",
749
- "crit"
750
- ],
751
- filterRules = (outcome, damage) => !(outcome === "missNone" && damage !== 0),
752
- asPercentages = true
753
- } = options;
754
- const originalSupport = this.combined.support();
755
- if (originalSupport.length === 0) {
756
- return { support: [], outcomes: [], data: {} };
757
- }
758
- const minDamage = Math.min(...originalSupport);
759
- const maxDamage = Math.max(...originalSupport);
760
- const support = Array.from(
761
- { length: maxDamage - minDamage + 1 },
762
- (_, i) => minDamage + i
763
- );
764
- const allOutcomeTypes = /* @__PURE__ */ new Set();
765
- for (const [, bin] of this.combined.map) {
766
- for (const outcomeType in bin.count) {
767
- if (bin.count[outcomeType] && bin.count[outcomeType] > 0) {
768
- allOutcomeTypes.add(outcomeType);
769
- }
770
- }
771
- }
772
- const existingOutcomes = Array.from(allOutcomeTypes).sort((a, b) => {
773
- const indexA = stackOrder.indexOf(a);
774
- const indexB = stackOrder.indexOf(b);
775
- if (indexA >= 0 && indexB >= 0) return indexA - indexB;
776
- if (indexA >= 0) return -1;
777
- if (indexB >= 0) return 1;
778
- return a.localeCompare(b);
779
- });
780
- if (existingOutcomes.length === 0) {
781
- return { support, outcomes: [], data: {} };
782
- }
783
- const data = {};
784
- for (const outcome of existingOutcomes) {
785
- data[outcome] = support.map((damage) => {
786
- const bin = this.combined.map.get(damage);
787
- if (!bin) return 0;
788
- if (!filterRules(outcome, damage)) {
789
- return 0;
790
- }
791
- const outcomeCount = bin.count[outcome] || 0;
792
- let totalChartableCount = 0;
793
- for (const [outcomeName, count] of Object.entries(bin.count)) {
794
- if (filterRules(outcomeName, damage)) {
795
- totalChartableCount += count || 0;
796
- }
797
- }
798
- if (totalChartableCount === 0) return 0;
799
- const outcomeFraction = outcomeCount / totalChartableCount;
800
- const outcomeProbability = bin.p * outcomeFraction;
801
- return asPercentages ? outcomeProbability * 100 : outcomeProbability;
802
- });
803
- }
804
- return {
805
- support,
806
- outcomes: existingOutcomes,
807
- data
808
- };
809
- }
810
- /**
811
- * Returns pure mathematical data for damage attribution charts showing damage contribution
812
- * from each outcome type at each damage value.
813
- *
814
- * Similar to toAttributionChartSeries() but uses bin.attr (damage attribution) instead of
815
- * bin.count (probability attribution).
816
- *
817
- * @param options Configuration options
818
- * @param options.stackOrder Preferred order for outcome types (unknowns placed at end)
819
- * @param options.filterRules Function to determine if outcome should be included for a given damage value
820
- * @param options.asPercentages Whether to return percentages (0-100) or raw damage values (0+)
821
- * @returns Pure data structure with support, outcomes, and damage attribution data
822
- *
823
- * @example
824
- * query.toDamageAttributionChartSeries()
825
- * // → {support: [0, 6, 12], outcomes: ['hit', 'crit'], data: {hit: [3.2, 5.1, ...], crit: [0, 1.8, ...]}}
826
- */
827
- toDamageAttributionChartSeries(options = {}) {
828
- const {
829
- stackOrder = [
830
- "missNone",
831
- "missDamage",
832
- "saveFail",
833
- "saveHalf",
834
- "pc",
835
- "hit",
836
- "crit"
837
- ],
838
- filterRules = (outcome, damage) => !(outcome === "missNone" && damage !== 0),
839
- asPercentages = true
840
- } = options;
841
- const originalSupport = this.combined.support();
842
- if (originalSupport.length === 0) {
843
- return { support: [], outcomes: [], data: {} };
844
- }
845
- const minDamage = Math.min(...originalSupport);
846
- const maxDamage = Math.max(...originalSupport);
847
- const support = Array.from(
848
- { length: maxDamage - minDamage + 1 },
849
- (_, i) => minDamage + i
850
- );
851
- const allOutcomeTypes = /* @__PURE__ */ new Set();
852
- for (const [, bin] of this.combined.map) {
853
- if (bin.attr) {
854
- for (const outcomeType in bin.attr) {
855
- if (bin.attr[outcomeType] && bin.attr[outcomeType] > 0) {
856
- allOutcomeTypes.add(outcomeType);
857
- }
858
- }
859
- }
860
- }
861
- const existingOutcomes = Array.from(allOutcomeTypes).sort((a, b) => {
862
- const indexA = stackOrder.indexOf(a);
863
- const indexB = stackOrder.indexOf(b);
864
- if (indexA >= 0 && indexB >= 0) return indexA - indexB;
865
- if (indexA >= 0) return -1;
866
- if (indexB >= 0) return 1;
867
- return a.localeCompare(b);
868
- });
869
- if (existingOutcomes.length === 0) {
870
- return { support, outcomes: [], data: {} };
871
- }
872
- const data = {};
873
- for (const outcome of existingOutcomes) {
874
- data[outcome] = support.map((damage) => {
875
- const bin = this.combined.map.get(damage);
876
- if (!bin || !bin.attr) return 0;
877
- if (!filterRules(outcome, damage)) {
878
- return 0;
879
- }
880
- const outcomeDamageAttribution = bin.attr[outcome] || 0;
881
- if (asPercentages) {
882
- let totalDamageAttribution = 0;
883
- for (const [outcomeName, damageAttr] of Object.entries(bin.attr)) {
884
- if (filterRules(outcomeName, damage)) {
885
- totalDamageAttribution += damageAttr || 0;
886
- }
887
- }
888
- if (totalDamageAttribution === 0) return 0;
889
- const damagePercentage = outcomeDamageAttribution / totalDamageAttribution * 100;
890
- return damagePercentage * bin.p * 100;
891
- } else {
892
- return outcomeDamageAttribution;
893
- }
894
- });
895
- }
896
- return {
897
- support,
898
- outcomes: existingOutcomes,
899
- data
900
- };
901
- }
902
- /**
903
- * Returns pure mathematical data for outcome attribution charts showing which
904
- * attack outcome combinations can produce each damage value.
905
- *
906
- * Unlike toDamageAttributionChartSeries() which tracks damage sources, this tracks
907
- * outcome combinations - answering "what attack outcomes produced this damage?"
908
- *
909
- * @param options Configuration options
910
- * @param options.stackOrder Preferred order for outcome types (unknowns placed at end)
911
- * @param options.filterRules Function to determine if outcome should be included for a given damage value
912
- * @param options.asPercentages Whether to return percentages (0-100) or probabilities (0-1)
913
- * @returns Pure data structure with support, outcomes, and outcome combination probabilities
914
- *
915
- * @example
916
- * query.toOutcomeAttributionChartSeries()
917
- * // → {support: [0, 6, 12], outcomes: ['all_miss', 'mixed', 'all_hit'], data: {all_miss: [15, 0, 0], mixed: [60, 80, 20], all_hit: [25, 20, 80]}}
918
- */
919
- toOutcomeAttributionChartSeries(options = {}) {
920
- const {
921
- stackOrder = [
922
- "missNone",
923
- "missDamage",
924
- "saveFail",
925
- "saveHalf",
926
- "pc",
927
- "hit",
928
- "crit"
929
- ],
930
- filterRules = (outcome, damage) => !(outcome === "missNone" && damage !== 0),
931
- asPercentages = true
932
- } = options;
933
- const originalSupport = this.combined.support();
934
- if (originalSupport.length === 0) {
935
- return { support: [], outcomes: [], data: {} };
936
- }
937
- const minDamage = Math.min(...originalSupport);
938
- const maxDamage = Math.max(...originalSupport);
939
- const support = Array.from(
940
- { length: maxDamage - minDamage + 1 },
941
- (_, i) => minDamage + i
942
- );
943
- const allOutcomeTypes = /* @__PURE__ */ new Set();
944
- for (const [, bin] of this.combined.map) {
945
- for (const outcomeType in bin.count) {
946
- if (bin.count[outcomeType] && bin.count[outcomeType] > 0) {
947
- allOutcomeTypes.add(outcomeType);
948
- }
949
- }
950
- }
951
- const existingOutcomes = Array.from(allOutcomeTypes).sort((a, b) => {
952
- const indexA = stackOrder.indexOf(a);
953
- const indexB = stackOrder.indexOf(b);
954
- if (indexA >= 0 && indexB >= 0) return indexA - indexB;
955
- if (indexA >= 0) return -1;
956
- if (indexB >= 0) return 1;
957
- return a.localeCompare(b);
958
- });
959
- if (existingOutcomes.length === 0) {
960
- return { support, outcomes: [], data: {} };
961
- }
962
- const data = {};
963
- for (const outcome of existingOutcomes) {
964
- data[outcome] = support.map((damage) => {
965
- const bin = this.combined.map.get(damage);
966
- if (!bin) return 0;
967
- if (!filterRules(outcome, damage)) {
968
- return 0;
969
- }
970
- if (outcome === "missNone") {
971
- const outcomeCount = bin.count[outcome] || 0;
972
- if (outcomeCount === 0) return 0;
973
- if (asPercentages) {
974
- let totalChartableCount = 0;
975
- for (const [outcomeName, count] of Object.entries(bin.count)) {
976
- if (filterRules(outcomeName, damage)) {
977
- totalChartableCount += count || 0;
978
- }
979
- }
980
- if (totalChartableCount === 0) return 0;
981
- const outcomeFraction = outcomeCount / totalChartableCount;
982
- return outcomeFraction * bin.p * 100;
983
- } else {
984
- return outcomeCount;
985
- }
986
- }
987
- if (!bin.attr) return 0;
988
- const outcomeDamageContribution = bin.attr[outcome] || 0;
989
- if (asPercentages) {
990
- let totalDamageAttribution = 0;
991
- for (const [, damageAttr] of Object.entries(bin.attr)) {
992
- totalDamageAttribution += damageAttr || 0;
993
- }
994
- if (totalDamageAttribution === 0) return 0;
995
- const outcomeFraction = outcomeDamageContribution / totalDamageAttribution;
996
- return outcomeFraction * bin.p * 100;
997
- } else {
998
- return outcomeDamageContribution;
999
- }
1000
- });
1001
- }
1002
- return {
1003
- support,
1004
- outcomes: existingOutcomes,
1005
- data
1006
- };
1007
- }
1008
752
  /**
1009
753
  * Returns pure mathematical data for cumulative distribution function (CDF).
1010
754
  * Shows P(X ≤ x) - the probability of getting at most x damage.
@@ -2376,6 +2120,149 @@ var _PMF = class _PMF {
2376
2120
  }
2377
2121
  return result;
2378
2122
  }
2123
+ /**
2124
+ * Reversed-convention CCDF percentile markers used by the attribution chart:
2125
+ * for each target probability t, the largest damage x still reached with
2126
+ * P(X ≥ x) > t%, falling back to the smallest/largest support value at the
2127
+ * edges. Ported verbatim from the app so `p80/p50/p20` keep their intentional
2128
+ * reversed meaning (p80 is the low-damage end). Computed on the full, un-binned
2129
+ * support. Assumes a non-empty map.
2130
+ */
2131
+ attributionPercentiles() {
2132
+ const sortedKeys = [...this.map.keys()].sort((a, b) => a - b);
2133
+ const sparseCCDF = [];
2134
+ let cumulativeP = 0;
2135
+ for (let i = sortedKeys.length - 1; i >= 0; i--) {
2136
+ const key = sortedKeys[i];
2137
+ const bin = this.map.get(key);
2138
+ if (!bin) continue;
2139
+ cumulativeP += bin.p;
2140
+ sparseCCDF.unshift({ x: key, y: cumulativeP * 100 });
2141
+ }
2142
+ const findDamageAtProbability = (targetProb) => {
2143
+ for (let i = 0; i < sparseCCDF.length; i++) {
2144
+ if (sparseCCDF[i].y <= targetProb) {
2145
+ return i > 0 ? sparseCCDF[i - 1].x : sparseCCDF[i].x;
2146
+ }
2147
+ }
2148
+ return sparseCCDF[sparseCCDF.length - 1].x;
2149
+ };
2150
+ return {
2151
+ p80: findDamageAtProbability(80),
2152
+ p50: findDamageAtProbability(50),
2153
+ p20: findDamageAtProbability(20)
2154
+ };
2155
+ }
2156
+ /**
2157
+ * Full numeric model for the stacked damage-attribution chart — bar-height
2158
+ * masses, tooltip shares, bucket labels/ranges, percentile markers, and the
2159
+ * mean. The caller only maps these into a rendering format (colors, labels,
2160
+ * axis units); all of the dice-and-probability logic lives here.
2161
+ *
2162
+ * Built split-first-then-bin: the attribution split ({@link attributionByValue})
2163
+ * runs on the un-binned distribution, then the resulting series are coarsened.
2164
+ * {@link rebin} is deliberately *not* used — rebinning first would fold any
2165
+ * sub-`binSize` damage into the damage-0 bucket, which the split then mistakes
2166
+ * for a clean miss and drops.
2167
+ *
2168
+ * @param options.maxBuckets Coarsen to at most this many equal-width buckets
2169
+ * when the integer support is wider (`range > maxBuckets`); omit for a dense,
2170
+ * per-integer model.
2171
+ * @param options.stackOrder Preferred outcome order (defaults to
2172
+ * {@link ALL_OUTCOME_TYPES}); labels outside it sort alphabetically after.
2173
+ * @param options.epsilon Bucket-total floor below which a `shares` entry is 0
2174
+ * (divide-by-~0 guard). Defaults to 1e-9.
2175
+ */
2176
+ damageAttributionChartModel(options = {}) {
2177
+ const { maxBuckets, stackOrder = ALL_OUTCOME_TYPES, epsilon = 1e-9 } = options;
2178
+ const empty = {
2179
+ labels: [],
2180
+ outcomes: [],
2181
+ series: /* @__PURE__ */ new Map(),
2182
+ shares: /* @__PURE__ */ new Map(),
2183
+ totals: [],
2184
+ percentiles: { p80: 0, p50: 0, p20: 0 },
2185
+ mean: 0
2186
+ };
2187
+ if (this.map.size === 0) return empty;
2188
+ const split = this.attributionByValue();
2189
+ const discovered = /* @__PURE__ */ new Set();
2190
+ for (const [, bin] of this.map) {
2191
+ for (const k in bin.count) discovered.add(k);
2192
+ if (bin.attr) for (const k in bin.attr) discovered.add(k);
2193
+ }
2194
+ const outcomes = sortOutcomes([...discovered], stackOrder);
2195
+ const hasAttribution = outcomes.length > 0;
2196
+ let min = Infinity;
2197
+ let max = -Infinity;
2198
+ const widen = (d2) => {
2199
+ if (d2 < min) min = d2;
2200
+ if (d2 > max) max = d2;
2201
+ };
2202
+ if (hasAttribution) {
2203
+ for (const s of split.values())
2204
+ for (const [d2, m] of s) if (m > 0) widen(d2);
2205
+ } else {
2206
+ for (const [d2, bin] of this.map) if ((bin.p || 0) > 0) widen(d2);
2207
+ }
2208
+ if (max < min) return empty;
2209
+ const range = max - min;
2210
+ const binned = maxBuckets !== void 0 && maxBuckets > 0 && range > maxBuckets;
2211
+ const binSize = binned ? Math.ceil((range + 1) / maxBuckets) : 1;
2212
+ const numBins = binned ? Math.ceil((range + 1) / binSize) : range + 1;
2213
+ const bucketOf = (d2) => Math.floor((d2 - min) / binSize);
2214
+ const labels = [];
2215
+ const binRanges = binned ? [] : void 0;
2216
+ for (let i = 0; i < numBins; i++) {
2217
+ const start = min + i * binSize;
2218
+ labels.push(start);
2219
+ if (binRanges)
2220
+ binRanges.push({ start, end: Math.min(start + binSize - 1, max) });
2221
+ }
2222
+ const series = /* @__PURE__ */ new Map();
2223
+ for (const outcome of outcomes) {
2224
+ const arr = new Array(numBins).fill(0);
2225
+ const s = split.get(outcome);
2226
+ if (s) {
2227
+ for (const [d2, m] of s) {
2228
+ const b = bucketOf(d2);
2229
+ if (b >= 0 && b < numBins) arr[b] += m;
2230
+ }
2231
+ }
2232
+ series.set(outcome, arr);
2233
+ }
2234
+ const totals = new Array(numBins).fill(0);
2235
+ if (hasAttribution) {
2236
+ for (const arr of series.values())
2237
+ for (let i = 0; i < numBins; i++) totals[i] += arr[i];
2238
+ } else {
2239
+ for (const [d2, bin] of this.map) {
2240
+ const p = bin.p || 0;
2241
+ if (p <= 0) continue;
2242
+ const b = bucketOf(d2);
2243
+ if (b >= 0 && b < numBins) totals[b] += p;
2244
+ }
2245
+ }
2246
+ const shares = /* @__PURE__ */ new Map();
2247
+ for (const outcome of outcomes) {
2248
+ const arr = series.get(outcome);
2249
+ const sh = new Array(numBins).fill(0);
2250
+ for (let i = 0; i < numBins; i++) {
2251
+ sh[i] = totals[i] > epsilon ? arr[i] / totals[i] : 0;
2252
+ }
2253
+ shares.set(outcome, sh);
2254
+ }
2255
+ return {
2256
+ labels,
2257
+ binRanges,
2258
+ outcomes,
2259
+ series,
2260
+ shares,
2261
+ totals,
2262
+ percentiles: this.attributionPercentiles(),
2263
+ mean: this.mean()
2264
+ };
2265
+ }
2379
2266
  tailProbGE(t) {
2380
2267
  let s = 0;
2381
2268
  for (const [x, bin] of this) {