@elaraai/e3-ui 1.0.11 → 1.0.13
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.
- package/dist/src/experiment/index.d.ts +694 -0
- package/dist/src/experiment/index.d.ts.map +1 -0
- package/dist/src/experiment/index.js +147 -0
- package/dist/src/experiment/index.js.map +1 -0
- package/dist/src/experiment/types.d.ts +575 -0
- package/dist/src/experiment/types.d.ts.map +1 -0
- package/dist/src/experiment/types.js +292 -0
- package/dist/src/experiment/types.js.map +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +7 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/internal.d.ts +1 -0
- package/dist/src/internal.d.ts.map +1 -1
- package/dist/src/internal.js +3 -0
- package/dist/src/internal.js.map +1 -1
- package/dist/src/runtime/experiment.d.ts +48 -0
- package/dist/src/runtime/experiment.d.ts.map +1 -0
- package/dist/src/runtime/experiment.js +10 -0
- package/dist/src/runtime/experiment.js.map +1 -0
- package/dist/src/runtime/index.d.ts +1 -0
- package/dist/src/runtime/index.d.ts.map +1 -1
- package/dist/src/runtime/index.js +1 -0
- package/dist/src/runtime/index.js.map +1 -1
- package/dist/test/experiment/experiment.examples.d.ts +294 -0
- package/dist/test/experiment/experiment.examples.d.ts.map +1 -0
- package/dist/test/experiment/experiment.examples.js +208 -0
- package/dist/test/experiment/experiment.examples.js.map +1 -0
- package/package.json +7 -7
- package/dist/src/buttons.d.ts +0 -2
- package/dist/src/buttons.d.ts.map +0 -1
- package/dist/src/buttons.js +0 -2
- package/dist/src/buttons.js.map +0 -1
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2025 Elara AI Pty Ltd
|
|
3
|
+
* Dual-licensed under AGPL-3.0 and commercial license. See LICENSE for details.
|
|
4
|
+
*/
|
|
5
|
+
/** @jsxImportSource @elaraai/e3-ui */
|
|
6
|
+
/**
|
|
7
|
+
* Experiment component example — an interactive causal-experiment surface over a
|
|
8
|
+
* generic manufacturing process. The worked question is *"did `slow_cure` change
|
|
9
|
+
* `bond_strength`?"* — a confounding-by-indication story: the optional slow-cure
|
|
10
|
+
* step is applied to the weaker incoming material, so the raw average makes it
|
|
11
|
+
* look worse (−3.1) while the like-for-like estimate flips it positive (+5.2),
|
|
12
|
+
* and the honesty verdict is `causal`.
|
|
13
|
+
*
|
|
14
|
+
* Pattern (the real, interactive shape — not a mock):
|
|
15
|
+
* 1. `e3.input('batches', Array(BatchRow), [...])` — the **input dataset**. The
|
|
16
|
+
* renderer introspects this row struct to drive the treatment / outcome /
|
|
17
|
+
* confounder pickers, exactly like `Table`.
|
|
18
|
+
* 2. `e3.input('experiment_config', Experiment.Types.Config, {...})` — the
|
|
19
|
+
* staged config the pickers edit (snake_case; structurally identical to
|
|
20
|
+
* east-py-datascience's `Causal.Types.CausalExperimentConfigType`).
|
|
21
|
+
* 3. ONE `e3.function('experiment', (rows, config) → ExperimentResult)`. In
|
|
22
|
+
* production its body calls east-py-datascience's `Causal.experiment`; here
|
|
23
|
+
* it is a pure-East fixture returning the constants the real engine would,
|
|
24
|
+
* so the surface runs offline with no datascience dependency. The snapshot
|
|
25
|
+
* harness compiles this body to seed the function — the numbers live only
|
|
26
|
+
* here, so the two copies cannot drift.
|
|
27
|
+
* 4. `<Experiment data config experiment journal />`. The renderer auto-runs on
|
|
28
|
+
* mount, derives every word / colour / bar from the single returned result
|
|
29
|
+
* and its `verdict`, and re-runs when the user edits the config.
|
|
30
|
+
*/
|
|
31
|
+
import { ArrayType, StructType, BooleanType, FloatType, IntegerType, StringType, DateTimeType, variant } from '@elaraai/east';
|
|
32
|
+
/** One production batch — the row struct the pickers are generic over. */
|
|
33
|
+
export declare const BatchRow: StructType<{
|
|
34
|
+
readonly slow_cure: BooleanType;
|
|
35
|
+
readonly bond_strength: FloatType;
|
|
36
|
+
readonly incoming_grade: FloatType;
|
|
37
|
+
readonly mix_viscosity: FloatType;
|
|
38
|
+
readonly supplier: IntegerType;
|
|
39
|
+
readonly line: StringType;
|
|
40
|
+
readonly product: StringType;
|
|
41
|
+
readonly run_date: DateTimeType;
|
|
42
|
+
}>;
|
|
43
|
+
export declare const batchesInput: import("@elaraai/e3").DatasetDef<ArrayType<StructType<{
|
|
44
|
+
readonly slow_cure: BooleanType;
|
|
45
|
+
readonly bond_strength: FloatType;
|
|
46
|
+
readonly incoming_grade: FloatType;
|
|
47
|
+
readonly mix_viscosity: FloatType;
|
|
48
|
+
readonly supplier: IntegerType;
|
|
49
|
+
readonly line: StringType;
|
|
50
|
+
readonly product: StringType;
|
|
51
|
+
readonly run_date: DateTimeType;
|
|
52
|
+
}>>, [variant<"field", "inputs">, variant<"field", "batches">]>;
|
|
53
|
+
export declare const experimentConfigInput: import("@elaraai/e3").DatasetDef<StructType<{
|
|
54
|
+
readonly treatment: StringType;
|
|
55
|
+
readonly outcome: StringType;
|
|
56
|
+
readonly common_causes: ArrayType<StringType>;
|
|
57
|
+
readonly categorical: import("@elaraai/east").OptionType<ArrayType<StringType>>;
|
|
58
|
+
readonly method: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
59
|
+
readonly linear_regression: import("@elaraai/east").NullType;
|
|
60
|
+
readonly propensity_score_weighting: StructType<{
|
|
61
|
+
readonly weighting_scheme: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
62
|
+
readonly ips_weight: import("@elaraai/east").NullType;
|
|
63
|
+
readonly ips_stabilized_weight: import("@elaraai/east").NullType;
|
|
64
|
+
readonly ips_normalized_weight: import("@elaraai/east").NullType;
|
|
65
|
+
}>>;
|
|
66
|
+
}>;
|
|
67
|
+
}>>;
|
|
68
|
+
readonly estimand: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
69
|
+
readonly ate: import("@elaraai/east").NullType;
|
|
70
|
+
readonly att: import("@elaraai/east").NullType;
|
|
71
|
+
readonly atc: import("@elaraai/east").NullType;
|
|
72
|
+
}>>;
|
|
73
|
+
readonly refute: import("@elaraai/east").OptionType<StructType<{
|
|
74
|
+
readonly placebo: BooleanType;
|
|
75
|
+
readonly random_common_cause: BooleanType;
|
|
76
|
+
readonly data_subset: BooleanType;
|
|
77
|
+
readonly sensitivity: import("@elaraai/east").OptionType<ArrayType<FloatType>>;
|
|
78
|
+
}>>;
|
|
79
|
+
readonly dose_feature: import("@elaraai/east").OptionType<StringType>;
|
|
80
|
+
readonly min_overlap: import("@elaraai/east").OptionType<FloatType>;
|
|
81
|
+
readonly min_treatment_variation: import("@elaraai/east").OptionType<FloatType>;
|
|
82
|
+
readonly bootstrap: import("@elaraai/east").OptionType<StructType<{
|
|
83
|
+
readonly reps: IntegerType;
|
|
84
|
+
readonly cluster_column: import("@elaraai/east").OptionType<StringType>;
|
|
85
|
+
readonly confidence_level: import("@elaraai/east").OptionType<FloatType>;
|
|
86
|
+
}>>;
|
|
87
|
+
readonly random_state: import("@elaraai/east").OptionType<IntegerType>;
|
|
88
|
+
}>, [variant<"field", "inputs">, variant<"field", "experiment_config">]>;
|
|
89
|
+
export declare const experimentFn: import("@elaraai/e3").FunctionDef<[ArrayType<StructType<{
|
|
90
|
+
readonly slow_cure: BooleanType;
|
|
91
|
+
readonly bond_strength: FloatType;
|
|
92
|
+
readonly incoming_grade: FloatType;
|
|
93
|
+
readonly mix_viscosity: FloatType;
|
|
94
|
+
readonly supplier: IntegerType;
|
|
95
|
+
readonly line: StringType;
|
|
96
|
+
readonly product: StringType;
|
|
97
|
+
readonly run_date: DateTimeType;
|
|
98
|
+
}>>, StructType<{
|
|
99
|
+
readonly treatment: StringType;
|
|
100
|
+
readonly outcome: StringType;
|
|
101
|
+
readonly common_causes: ArrayType<StringType>;
|
|
102
|
+
readonly categorical: import("@elaraai/east").OptionType<ArrayType<StringType>>;
|
|
103
|
+
readonly method: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
104
|
+
readonly linear_regression: import("@elaraai/east").NullType;
|
|
105
|
+
readonly propensity_score_weighting: StructType<{
|
|
106
|
+
readonly weighting_scheme: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
107
|
+
readonly ips_weight: import("@elaraai/east").NullType;
|
|
108
|
+
readonly ips_stabilized_weight: import("@elaraai/east").NullType;
|
|
109
|
+
readonly ips_normalized_weight: import("@elaraai/east").NullType;
|
|
110
|
+
}>>;
|
|
111
|
+
}>;
|
|
112
|
+
}>>;
|
|
113
|
+
readonly estimand: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
114
|
+
readonly ate: import("@elaraai/east").NullType;
|
|
115
|
+
readonly att: import("@elaraai/east").NullType;
|
|
116
|
+
readonly atc: import("@elaraai/east").NullType;
|
|
117
|
+
}>>;
|
|
118
|
+
readonly refute: import("@elaraai/east").OptionType<StructType<{
|
|
119
|
+
readonly placebo: BooleanType;
|
|
120
|
+
readonly random_common_cause: BooleanType;
|
|
121
|
+
readonly data_subset: BooleanType;
|
|
122
|
+
readonly sensitivity: import("@elaraai/east").OptionType<ArrayType<FloatType>>;
|
|
123
|
+
}>>;
|
|
124
|
+
readonly dose_feature: import("@elaraai/east").OptionType<StringType>;
|
|
125
|
+
readonly min_overlap: import("@elaraai/east").OptionType<FloatType>;
|
|
126
|
+
readonly min_treatment_variation: import("@elaraai/east").OptionType<FloatType>;
|
|
127
|
+
readonly bootstrap: import("@elaraai/east").OptionType<StructType<{
|
|
128
|
+
readonly reps: IntegerType;
|
|
129
|
+
readonly cluster_column: import("@elaraai/east").OptionType<StringType>;
|
|
130
|
+
readonly confidence_level: import("@elaraai/east").OptionType<FloatType>;
|
|
131
|
+
}>>;
|
|
132
|
+
readonly random_state: import("@elaraai/east").OptionType<IntegerType>;
|
|
133
|
+
}>], StructType<{
|
|
134
|
+
readonly naive: FloatType;
|
|
135
|
+
readonly naive_ci: import("@elaraai/east").OptionType<StructType<{
|
|
136
|
+
readonly lower: FloatType;
|
|
137
|
+
readonly upper: FloatType;
|
|
138
|
+
}>>;
|
|
139
|
+
readonly adjusted: import("@elaraai/east").OptionType<StructType<{
|
|
140
|
+
readonly effect: FloatType;
|
|
141
|
+
readonly ci: import("@elaraai/east").OptionType<StructType<{
|
|
142
|
+
readonly lower: FloatType;
|
|
143
|
+
readonly upper: FloatType;
|
|
144
|
+
}>>;
|
|
145
|
+
}>>;
|
|
146
|
+
readonly n_total: IntegerType;
|
|
147
|
+
readonly n_treated: IntegerType;
|
|
148
|
+
readonly n_control: IntegerType;
|
|
149
|
+
readonly n_dropped: IntegerType;
|
|
150
|
+
readonly balance: ArrayType<StructType<{
|
|
151
|
+
readonly column: StringType;
|
|
152
|
+
readonly base_column: StringType;
|
|
153
|
+
readonly treated_mean: FloatType;
|
|
154
|
+
readonly control_mean: FloatType;
|
|
155
|
+
readonly std_diff: FloatType;
|
|
156
|
+
}>>;
|
|
157
|
+
readonly overlap: StructType<{
|
|
158
|
+
readonly treated_propensity: import("@elaraai/east").VectorType<FloatType>;
|
|
159
|
+
readonly control_propensity: import("@elaraai/east").VectorType<FloatType>;
|
|
160
|
+
readonly common_support_frac: FloatType;
|
|
161
|
+
readonly positivity_ok: BooleanType;
|
|
162
|
+
}>;
|
|
163
|
+
readonly refutation: import("@elaraai/east").OptionType<StructType<{
|
|
164
|
+
readonly placebo_effect: import("@elaraai/east").OptionType<FloatType>;
|
|
165
|
+
readonly placebo_passes: import("@elaraai/east").OptionType<BooleanType>;
|
|
166
|
+
readonly random_cc_within_ci: import("@elaraai/east").OptionType<BooleanType>;
|
|
167
|
+
readonly data_subset_effect: import("@elaraai/east").OptionType<FloatType>;
|
|
168
|
+
readonly data_subset_std: import("@elaraai/east").OptionType<FloatType>;
|
|
169
|
+
readonly robustness_value: import("@elaraai/east").OptionType<FloatType>;
|
|
170
|
+
readonly sensitivity: import("@elaraai/east").OptionType<StructType<{
|
|
171
|
+
readonly strengths: import("@elaraai/east").VectorType<FloatType>;
|
|
172
|
+
readonly effects: import("@elaraai/east").VectorType<FloatType>;
|
|
173
|
+
}>>;
|
|
174
|
+
}>>;
|
|
175
|
+
readonly dose_response: import("@elaraai/east").OptionType<StructType<{
|
|
176
|
+
readonly feature: StringType;
|
|
177
|
+
readonly grid: import("@elaraai/east").VectorType<FloatType>;
|
|
178
|
+
readonly effect: import("@elaraai/east").VectorType<FloatType>;
|
|
179
|
+
readonly lower: import("@elaraai/east").OptionType<import("@elaraai/east").VectorType<FloatType>>;
|
|
180
|
+
readonly upper: import("@elaraai/east").OptionType<import("@elaraai/east").VectorType<FloatType>>;
|
|
181
|
+
readonly size: import("@elaraai/east").VectorType<IntegerType>;
|
|
182
|
+
}>>;
|
|
183
|
+
readonly verdict: import("@elaraai/east").VariantType<{
|
|
184
|
+
readonly causal: import("@elaraai/east").NullType;
|
|
185
|
+
readonly modest: import("@elaraai/east").NullType;
|
|
186
|
+
readonly adjustment_insufficient: import("@elaraai/east").NullType;
|
|
187
|
+
readonly non_identifiable_positivity: import("@elaraai/east").NullType;
|
|
188
|
+
readonly not_estimable: StringType;
|
|
189
|
+
}>;
|
|
190
|
+
}>>;
|
|
191
|
+
export declare const experimentJournalInput: import("@elaraai/e3").DatasetDef<ArrayType<StructType<{
|
|
192
|
+
readonly config: StructType<{
|
|
193
|
+
readonly treatment: StringType;
|
|
194
|
+
readonly outcome: StringType;
|
|
195
|
+
readonly common_causes: ArrayType<StringType>;
|
|
196
|
+
readonly categorical: import("@elaraai/east").OptionType<ArrayType<StringType>>;
|
|
197
|
+
readonly method: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
198
|
+
readonly linear_regression: import("@elaraai/east").NullType;
|
|
199
|
+
readonly propensity_score_weighting: StructType<{
|
|
200
|
+
readonly weighting_scheme: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
201
|
+
readonly ips_weight: import("@elaraai/east").NullType;
|
|
202
|
+
readonly ips_stabilized_weight: import("@elaraai/east").NullType;
|
|
203
|
+
readonly ips_normalized_weight: import("@elaraai/east").NullType;
|
|
204
|
+
}>>;
|
|
205
|
+
}>;
|
|
206
|
+
}>>;
|
|
207
|
+
readonly estimand: import("@elaraai/east").OptionType<import("@elaraai/east").VariantType<{
|
|
208
|
+
readonly ate: import("@elaraai/east").NullType;
|
|
209
|
+
readonly att: import("@elaraai/east").NullType;
|
|
210
|
+
readonly atc: import("@elaraai/east").NullType;
|
|
211
|
+
}>>;
|
|
212
|
+
readonly refute: import("@elaraai/east").OptionType<StructType<{
|
|
213
|
+
readonly placebo: BooleanType;
|
|
214
|
+
readonly random_common_cause: BooleanType;
|
|
215
|
+
readonly data_subset: BooleanType;
|
|
216
|
+
readonly sensitivity: import("@elaraai/east").OptionType<ArrayType<FloatType>>;
|
|
217
|
+
}>>;
|
|
218
|
+
readonly dose_feature: import("@elaraai/east").OptionType<StringType>;
|
|
219
|
+
readonly min_overlap: import("@elaraai/east").OptionType<FloatType>;
|
|
220
|
+
readonly min_treatment_variation: import("@elaraai/east").OptionType<FloatType>;
|
|
221
|
+
readonly bootstrap: import("@elaraai/east").OptionType<StructType<{
|
|
222
|
+
readonly reps: IntegerType;
|
|
223
|
+
readonly cluster_column: import("@elaraai/east").OptionType<StringType>;
|
|
224
|
+
readonly confidence_level: import("@elaraai/east").OptionType<FloatType>;
|
|
225
|
+
}>>;
|
|
226
|
+
readonly random_state: import("@elaraai/east").OptionType<IntegerType>;
|
|
227
|
+
}>;
|
|
228
|
+
readonly verdict: import("@elaraai/east").VariantType<{
|
|
229
|
+
readonly causal: import("@elaraai/east").NullType;
|
|
230
|
+
readonly modest: import("@elaraai/east").NullType;
|
|
231
|
+
readonly adjustment_insufficient: import("@elaraai/east").NullType;
|
|
232
|
+
readonly non_identifiable_positivity: import("@elaraai/east").NullType;
|
|
233
|
+
readonly not_estimable: StringType;
|
|
234
|
+
}>;
|
|
235
|
+
readonly naive: FloatType;
|
|
236
|
+
readonly adjusted: import("@elaraai/east").OptionType<FloatType>;
|
|
237
|
+
readonly committed_at: DateTimeType;
|
|
238
|
+
readonly committed_by: StringType;
|
|
239
|
+
}>>, [variant<"field", "inputs">, variant<"field", "experiment_journal">]>;
|
|
240
|
+
export declare const experimentPopulationInput: import("@elaraai/e3").DatasetDef<ArrayType<import("@elaraai/east").VariantType<{
|
|
241
|
+
readonly string: import("@elaraai/east").StructType<{
|
|
242
|
+
readonly fieldId: import("@elaraai/east").StringType;
|
|
243
|
+
readonly op: import("@elaraai/east").VariantType<{
|
|
244
|
+
readonly eq: import("@elaraai/east").StringType;
|
|
245
|
+
readonly neq: import("@elaraai/east").StringType;
|
|
246
|
+
readonly in: import("@elaraai/east").SetType<import("@elaraai/east").StringType>;
|
|
247
|
+
readonly notIn: import("@elaraai/east").SetType<import("@elaraai/east").StringType>;
|
|
248
|
+
readonly contains: import("@elaraai/east").StringType;
|
|
249
|
+
readonly matches: import("@elaraai/east").StringType;
|
|
250
|
+
}>;
|
|
251
|
+
}>;
|
|
252
|
+
readonly integer: import("@elaraai/east").StructType<{
|
|
253
|
+
readonly fieldId: import("@elaraai/east").StringType;
|
|
254
|
+
readonly op: import("@elaraai/east").VariantType<{
|
|
255
|
+
readonly eq: import("@elaraai/east").IntegerType;
|
|
256
|
+
readonly neq: import("@elaraai/east").IntegerType;
|
|
257
|
+
readonly lt: import("@elaraai/east").IntegerType;
|
|
258
|
+
readonly lte: import("@elaraai/east").IntegerType;
|
|
259
|
+
readonly gt: import("@elaraai/east").IntegerType;
|
|
260
|
+
readonly gte: import("@elaraai/east").IntegerType;
|
|
261
|
+
readonly in: import("@elaraai/east").SetType<import("@elaraai/east").IntegerType>;
|
|
262
|
+
}>;
|
|
263
|
+
}>;
|
|
264
|
+
readonly float: import("@elaraai/east").StructType<{
|
|
265
|
+
readonly fieldId: import("@elaraai/east").StringType;
|
|
266
|
+
readonly op: import("@elaraai/east").VariantType<{
|
|
267
|
+
readonly lt: import("@elaraai/east").FloatType;
|
|
268
|
+
readonly lte: import("@elaraai/east").FloatType;
|
|
269
|
+
readonly gt: import("@elaraai/east").FloatType;
|
|
270
|
+
readonly gte: import("@elaraai/east").FloatType;
|
|
271
|
+
}>;
|
|
272
|
+
}>;
|
|
273
|
+
readonly datetime: import("@elaraai/east").StructType<{
|
|
274
|
+
readonly fieldId: import("@elaraai/east").StringType;
|
|
275
|
+
readonly op: import("@elaraai/east").VariantType<{
|
|
276
|
+
readonly before: import("@elaraai/east").DateTimeType;
|
|
277
|
+
readonly after: import("@elaraai/east").DateTimeType;
|
|
278
|
+
readonly between: import("@elaraai/east").StructType<{
|
|
279
|
+
readonly from: import("@elaraai/east").DateTimeType;
|
|
280
|
+
readonly to: import("@elaraai/east").DateTimeType;
|
|
281
|
+
}>;
|
|
282
|
+
}>;
|
|
283
|
+
}>;
|
|
284
|
+
readonly boolean: import("@elaraai/east").StructType<{
|
|
285
|
+
readonly fieldId: import("@elaraai/east").StringType;
|
|
286
|
+
readonly op: import("@elaraai/east").VariantType<{
|
|
287
|
+
readonly is: import("@elaraai/east").BooleanType;
|
|
288
|
+
}>;
|
|
289
|
+
}>;
|
|
290
|
+
}>>, [variant<"field", "inputs">, variant<"field", "experiment_population">]>;
|
|
291
|
+
export declare const experimentSurface: import("@elaraai/east").ExampleDef<[], any>;
|
|
292
|
+
export declare const experimentTrust: import("@elaraai/east").ExampleDef<[], any>;
|
|
293
|
+
export declare const experimentDose: import("@elaraai/east").ExampleDef<[], any>;
|
|
294
|
+
//# sourceMappingURL=experiment.examples.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"experiment.examples.d.ts","sourceRoot":"","sources":["../../../test/experiment/experiment.examples.tsx"],"names":[],"mappings":"AAAA;;;GAGG;AACH,sCAAsC;AAEtC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AAEH,OAAO,EACG,SAAS,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAC9E,OAAO,EACtB,MAAM,eAAe,CAAC;AAUvB,0EAA0E;AAC1E,eAAO,MAAM,QAAQ;;;;;;;;;EASnB,CAAC;AAEH,eAAO,MAAM,YAAY;;;;;;;;;+DAavB,CAAC;AAMH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAahC,CAAC;AAOH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCjB,CAAC;AAOT,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0EA4BjC,CAAC;AAQH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAGpC,CAAC;AAMH,eAAO,MAAM,iBAAiB,6CAuB5B,CAAC;AAEH,eAAO,MAAM,eAAe,6CAwB1B,CAAC;AAEH,eAAO,MAAM,cAAc,6CAwBzB,CAAC"}
|
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import { jsx as _jsx } from "@elaraai/e3-ui/jsx-runtime";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) 2025 Elara AI Pty Ltd
|
|
4
|
+
* Dual-licensed under AGPL-3.0 and commercial license. See LICENSE for details.
|
|
5
|
+
*/
|
|
6
|
+
/** @jsxImportSource @elaraai/e3-ui */
|
|
7
|
+
/**
|
|
8
|
+
* Experiment component example — an interactive causal-experiment surface over a
|
|
9
|
+
* generic manufacturing process. The worked question is *"did `slow_cure` change
|
|
10
|
+
* `bond_strength`?"* — a confounding-by-indication story: the optional slow-cure
|
|
11
|
+
* step is applied to the weaker incoming material, so the raw average makes it
|
|
12
|
+
* look worse (−3.1) while the like-for-like estimate flips it positive (+5.2),
|
|
13
|
+
* and the honesty verdict is `causal`.
|
|
14
|
+
*
|
|
15
|
+
* Pattern (the real, interactive shape — not a mock):
|
|
16
|
+
* 1. `e3.input('batches', Array(BatchRow), [...])` — the **input dataset**. The
|
|
17
|
+
* renderer introspects this row struct to drive the treatment / outcome /
|
|
18
|
+
* confounder pickers, exactly like `Table`.
|
|
19
|
+
* 2. `e3.input('experiment_config', Experiment.Types.Config, {...})` — the
|
|
20
|
+
* staged config the pickers edit (snake_case; structurally identical to
|
|
21
|
+
* east-py-datascience's `Causal.Types.CausalExperimentConfigType`).
|
|
22
|
+
* 3. ONE `e3.function('experiment', (rows, config) → ExperimentResult)`. In
|
|
23
|
+
* production its body calls east-py-datascience's `Causal.experiment`; here
|
|
24
|
+
* it is a pure-East fixture returning the constants the real engine would,
|
|
25
|
+
* so the surface runs offline with no datascience dependency. The snapshot
|
|
26
|
+
* harness compiles this body to seed the function — the numbers live only
|
|
27
|
+
* here, so the two copies cannot drift.
|
|
28
|
+
* 4. `<Experiment data config experiment journal />`. The renderer auto-runs on
|
|
29
|
+
* mount, derives every word / colour / bar from the single returned result
|
|
30
|
+
* and its `verdict`, and re-runs when the user edits the config.
|
|
31
|
+
*/
|
|
32
|
+
import { East, ArrayType, StructType, BooleanType, FloatType, IntegerType, StringType, DateTimeType, some, none, variant, example, } from '@elaraai/east';
|
|
33
|
+
import { Reactive, UIComponentType } from '@elaraai/east-ui';
|
|
34
|
+
import { Data, Experiment, Func } from '@elaraai/e3-ui';
|
|
35
|
+
import e3 from '@elaraai/e3';
|
|
36
|
+
// ============================================================================
|
|
37
|
+
// Input dataset — the bonded-panel batches. The surface frames over these
|
|
38
|
+
// columns; the estimator ignores the rows (it returns a fixture).
|
|
39
|
+
// ============================================================================
|
|
40
|
+
/** One production batch — the row struct the pickers are generic over. */
|
|
41
|
+
export const BatchRow = StructType({
|
|
42
|
+
slow_cure: BooleanType, // treatment (yes / no)
|
|
43
|
+
bond_strength: FloatType, // outcome (MPa)
|
|
44
|
+
incoming_grade: FloatType, // confounder — the cure is applied to weaker stock
|
|
45
|
+
mix_viscosity: FloatType, // confounder
|
|
46
|
+
supplier: IntegerType, // confounder (categorical code)
|
|
47
|
+
line: StringType, // population filter dimension
|
|
48
|
+
product: StringType, // population filter dimension
|
|
49
|
+
run_date: DateTimeType, // suggested-but-unused column
|
|
50
|
+
});
|
|
51
|
+
export const batchesInput = e3.input('batches', ArrayType(BatchRow), [
|
|
52
|
+
{ slow_cure: false, bond_strength: 9.0, incoming_grade: 9.0, mix_viscosity: 24.1, supplier: 0n, line: 'A', product: 'panel', run_date: new Date('2026-05-02') },
|
|
53
|
+
{ slow_cure: false, bond_strength: 8.6, incoming_grade: 8.5, mix_viscosity: 24.0, supplier: 0n, line: 'B', product: 'panel', run_date: new Date('2026-05-03') },
|
|
54
|
+
{ slow_cure: false, bond_strength: 8.2, incoming_grade: 8.0, mix_viscosity: 24.2, supplier: 1n, line: 'A', product: 'panel', run_date: new Date('2026-05-04') },
|
|
55
|
+
{ slow_cure: false, bond_strength: 7.7, incoming_grade: 7.5, mix_viscosity: 23.9, supplier: 0n, line: 'B', product: 'panel', run_date: new Date('2026-05-05') },
|
|
56
|
+
{ slow_cure: false, bond_strength: 7.3, incoming_grade: 7.0, mix_viscosity: 24.3, supplier: 1n, line: 'A', product: 'panel', run_date: new Date('2026-05-06') },
|
|
57
|
+
{ slow_cure: false, bond_strength: 6.8, incoming_grade: 6.5, mix_viscosity: 24.0, supplier: 0n, line: 'B', product: 'panel', run_date: new Date('2026-05-07') },
|
|
58
|
+
{ slow_cure: true, bond_strength: 7.1, incoming_grade: 5.0, mix_viscosity: 24.7, supplier: 1n, line: 'A', product: 'panel', run_date: new Date('2026-05-08') },
|
|
59
|
+
{ slow_cure: true, bond_strength: 6.6, incoming_grade: 4.5, mix_viscosity: 24.6, supplier: 1n, line: 'B', product: 'panel', run_date: new Date('2026-05-09') },
|
|
60
|
+
{ slow_cure: true, bond_strength: 6.2, incoming_grade: 4.0, mix_viscosity: 24.8, supplier: 1n, line: 'A', product: 'panel', run_date: new Date('2026-05-10') },
|
|
61
|
+
{ slow_cure: true, bond_strength: 5.7, incoming_grade: 3.5, mix_viscosity: 24.5, supplier: 0n, line: 'B', product: 'panel', run_date: new Date('2026-05-11') },
|
|
62
|
+
{ slow_cure: true, bond_strength: 5.3, incoming_grade: 3.0, mix_viscosity: 24.9, supplier: 1n, line: 'A', product: 'panel', run_date: new Date('2026-05-12') },
|
|
63
|
+
{ slow_cure: true, bond_strength: 4.8, incoming_grade: 2.5, mix_viscosity: 24.7, supplier: 1n, line: 'B', product: 'panel', run_date: new Date('2026-05-13') },
|
|
64
|
+
]);
|
|
65
|
+
// ============================================================================
|
|
66
|
+
// Staged config — the experiment the user framed (the pickers edit this).
|
|
67
|
+
// ============================================================================
|
|
68
|
+
export const experimentConfigInput = e3.input('experiment_config', Experiment.Types.Config, {
|
|
69
|
+
treatment: 'slow_cure',
|
|
70
|
+
outcome: 'bond_strength',
|
|
71
|
+
common_causes: ['incoming_grade', 'mix_viscosity', 'supplier'],
|
|
72
|
+
categorical: some(['supplier']),
|
|
73
|
+
method: some(variant('propensity_score_weighting', { weighting_scheme: some(variant('ips_stabilized_weight', null)) })),
|
|
74
|
+
estimand: some(variant('ate', null)),
|
|
75
|
+
refute: some({ placebo: true, random_common_cause: true, data_subset: true, sensitivity: some([0.0, 0.2, 0.4, 0.6, 0.8, 1.0]) }),
|
|
76
|
+
dose_feature: some('incoming_grade'),
|
|
77
|
+
min_overlap: some(0.1),
|
|
78
|
+
min_treatment_variation: some(0.02),
|
|
79
|
+
bootstrap: none,
|
|
80
|
+
random_state: some(42n),
|
|
81
|
+
});
|
|
82
|
+
// ============================================================================
|
|
83
|
+
// Estimator — ONE pure-East fixture returning the full numeric contract.
|
|
84
|
+
// Exported so the snapshot harness compiles + seeds the *same* numbers (no drift).
|
|
85
|
+
// ============================================================================
|
|
86
|
+
export const experimentFn = e3.function('experiment', East.function([ArrayType(BatchRow), Experiment.Types.Config], Experiment.Types.Result, (_$, _data, _config) => ({
|
|
87
|
+
naive: -3.1,
|
|
88
|
+
naive_ci: some({ lower: -6.0, upper: -0.2 }),
|
|
89
|
+
adjusted: some({ effect: 5.2, ci: some({ lower: 3.1, upper: 7.4 }) }),
|
|
90
|
+
n_total: 480n, n_treated: 240n, n_control: 240n, n_dropped: 31n,
|
|
91
|
+
balance: [
|
|
92
|
+
{ column: 'incoming_grade', base_column: 'incoming_grade', treated_mean: 6.1, control_mean: 8.0, std_diff: 0.90 },
|
|
93
|
+
{ column: 'supplier', base_column: 'supplier', treated_mean: 0.61, control_mean: 0.33, std_diff: 0.55 },
|
|
94
|
+
{ column: 'mix_viscosity', base_column: 'mix_viscosity', treated_mean: 24.6, control_mean: 24.1, std_diff: 0.24 },
|
|
95
|
+
],
|
|
96
|
+
overlap: {
|
|
97
|
+
treated_propensity: new Float64Array([0, 0, 1, 2, 4, 6, 9, 12, 15, 18, 20, 21, 19, 16, 12, 8, 5, 3, 1, 0]),
|
|
98
|
+
control_propensity: new Float64Array([0, 2, 5, 9, 14, 18, 21, 20, 17, 13, 9, 6, 4, 2, 1, 1, 0, 0, 0, 0]),
|
|
99
|
+
common_support_frac: 0.78,
|
|
100
|
+
positivity_ok: true,
|
|
101
|
+
},
|
|
102
|
+
refutation: some({
|
|
103
|
+
placebo_effect: some(0.0),
|
|
104
|
+
placebo_passes: some(true),
|
|
105
|
+
random_cc_within_ci: some(true),
|
|
106
|
+
data_subset_effect: some(5.0),
|
|
107
|
+
data_subset_std: some(0.4),
|
|
108
|
+
robustness_value: some(2.3),
|
|
109
|
+
sensitivity: some({
|
|
110
|
+
strengths: new Float64Array([0.0, 0.2, 0.4, 0.6, 0.8, 1.0]),
|
|
111
|
+
effects: new Float64Array([5.2, 4.4, 3.4, 2.2, 0.8, -0.8]),
|
|
112
|
+
}),
|
|
113
|
+
}),
|
|
114
|
+
dose_response: some({
|
|
115
|
+
feature: 'incoming_grade',
|
|
116
|
+
grid: new Float64Array([2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 5.5, 6.0, 6.5]),
|
|
117
|
+
effect: new Float64Array([0.0, 1.5, 2.6, 3.4, 4.0, 4.4, 4.6, 4.72, 4.8]),
|
|
118
|
+
lower: some(new Float64Array([-0.1, 1.0, 2.0, 2.7, 3.3, 3.7, 3.9, 4.0, 4.1])),
|
|
119
|
+
upper: some(new Float64Array([0.3, 2.0, 3.2, 4.1, 4.7, 5.1, 5.3, 5.45, 5.5])),
|
|
120
|
+
size: new BigInt64Array([40n, 52n, 61n, 66n, 70n, 58n, 44n, 30n, 18n]),
|
|
121
|
+
}),
|
|
122
|
+
verdict: variant('causal', null),
|
|
123
|
+
})));
|
|
124
|
+
// ============================================================================
|
|
125
|
+
// Journal — committed experiments (newest first). The verdict is STORED on each
|
|
126
|
+
// row (not recomputed); the renderer derives only its colour/word from it.
|
|
127
|
+
// ============================================================================
|
|
128
|
+
export const experimentJournalInput = e3.input('experiment_journal', Experiment.Types.Journal, [
|
|
129
|
+
{
|
|
130
|
+
config: {
|
|
131
|
+
treatment: 'slow_cure', outcome: 'bond_strength', common_causes: ['incoming_grade', 'mix_viscosity', 'supplier'],
|
|
132
|
+
categorical: none, method: none, estimand: none, refute: none,
|
|
133
|
+
dose_feature: none, min_overlap: none, min_treatment_variation: none, bootstrap: none, random_state: none,
|
|
134
|
+
},
|
|
135
|
+
verdict: variant('causal', null), naive: -3.1, adjusted: some(5.2),
|
|
136
|
+
committed_at: new Date('2026-06-13T08:00:00Z'), committed_by: 'M. Kerr',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
config: {
|
|
140
|
+
treatment: 'extra_anneal', outcome: 'hardness', common_causes: ['line', 'mix_viscosity'],
|
|
141
|
+
categorical: none, method: none, estimand: none, refute: none,
|
|
142
|
+
dose_feature: none, min_overlap: none, min_treatment_variation: none, bootstrap: none, random_state: none,
|
|
143
|
+
},
|
|
144
|
+
verdict: variant('modest', null), naive: 0.4, adjusted: some(0.4),
|
|
145
|
+
committed_at: new Date('2026-06-09T08:00:00Z'), committed_by: 'M. Kerr',
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
config: {
|
|
149
|
+
treatment: 'new_nozzle', outcome: 'throughput', common_causes: ['line', 'batch_size'],
|
|
150
|
+
categorical: none, method: none, estimand: none, refute: none,
|
|
151
|
+
dose_feature: none, min_overlap: none, min_treatment_variation: none, bootstrap: none, random_state: none,
|
|
152
|
+
},
|
|
153
|
+
verdict: variant('causal', null), naive: 22.0, adjusted: some(38.0),
|
|
154
|
+
committed_at: new Date('2026-06-02T08:00:00Z'), committed_by: 'T. Ode',
|
|
155
|
+
},
|
|
156
|
+
]);
|
|
157
|
+
// ============================================================================
|
|
158
|
+
// Population filter — the Step-4 "Which batches?" predicates, seeded so the
|
|
159
|
+
// surface loads with filter chips applied. UI-side only: it narrows the rows
|
|
160
|
+
// before the call and is NOT part of the config the function receives.
|
|
161
|
+
// ============================================================================
|
|
162
|
+
export const experimentPopulationInput = e3.input('experiment_population', Experiment.Types.Population, [
|
|
163
|
+
variant('string', { fieldId: 'line', op: variant('in', new Set(['A', 'B'])) }),
|
|
164
|
+
variant('string', { fieldId: 'product', op: variant('eq', 'panel') }),
|
|
165
|
+
]);
|
|
166
|
+
// ============================================================================
|
|
167
|
+
// Scene — the full surface bound to the dataset, config, estimator and journal.
|
|
168
|
+
// ============================================================================
|
|
169
|
+
export const experimentSurface = example({
|
|
170
|
+
keywords: ['Experiment', 'causal', 'effect', 'confounding', 'forest', 'verdict', 'Data', 'Func', 'bind', 'generic'],
|
|
171
|
+
description: 'An interactive causal-experiment surface: "did slow_cure change bond_strength?" — confounding by indication, with the raw-vs-adjusted sign flip and a "causal" verdict. The "Answer" tab. Generic over the bound dataset; the result comes from one bound estimator function and every word is derived from the numbers + verdict.',
|
|
172
|
+
fn: East.function([], UIComponentType, (_$) => (_jsx(Reactive, { children: $ => {
|
|
173
|
+
const data = $.let(Data.bind(batchesInput));
|
|
174
|
+
const config = $.let(Data.bind(experimentConfigInput, { mode: 'staged' }));
|
|
175
|
+
const journal = $.let(Data.bind(experimentJournalInput));
|
|
176
|
+
const population = $.let(Data.bind(experimentPopulationInput, { mode: 'staged' }));
|
|
177
|
+
const experiment = $.let(Func.bind(experimentFn));
|
|
178
|
+
return (_jsx(Experiment, { data: data, config: config, experiment: experiment, population: population, journal: journal, columns: { bond_strength: { unit: 'MPa' } } }));
|
|
179
|
+
} }))),
|
|
180
|
+
inputs: [],
|
|
181
|
+
});
|
|
182
|
+
export const experimentTrust = example({
|
|
183
|
+
keywords: ['Experiment', 'causal', 'refute', 'trust', 'sensitivity', 'robustness', 'verdict'],
|
|
184
|
+
description: 'The Experiment "Can we trust it?" tab — the refutation checklist (shuffle / drop-some / decoy / hidden-cause) and the unobserved-confounder sensitivity curve, all from the single result\'s refutation summary.',
|
|
185
|
+
fn: East.function([], UIComponentType, (_$) => (_jsx(Reactive, { children: $ => {
|
|
186
|
+
const data = $.let(Data.bind(batchesInput));
|
|
187
|
+
const config = $.let(Data.bind(experimentConfigInput, { mode: 'staged' }));
|
|
188
|
+
const journal = $.let(Data.bind(experimentJournalInput));
|
|
189
|
+
const population = $.let(Data.bind(experimentPopulationInput, { mode: 'staged' }));
|
|
190
|
+
const experiment = $.let(Func.bind(experimentFn));
|
|
191
|
+
return (_jsx(Experiment, { data: data, config: config, experiment: experiment, population: population, journal: journal, columns: { bond_strength: { unit: 'MPa' } }, defaultTab: "trust" }));
|
|
192
|
+
} }))),
|
|
193
|
+
inputs: [],
|
|
194
|
+
});
|
|
195
|
+
export const experimentDose = example({
|
|
196
|
+
keywords: ['Experiment', 'causal', 'dose', 'ale', 'response', 'marginal'],
|
|
197
|
+
description: 'The Experiment "How much?" tab — the ALE dose-response curve (with "you are here" + "sweet spot" markers) and the marginal-gain-per-step bars, from the single result\'s dose_response.',
|
|
198
|
+
fn: East.function([], UIComponentType, (_$) => (_jsx(Reactive, { children: $ => {
|
|
199
|
+
const data = $.let(Data.bind(batchesInput));
|
|
200
|
+
const config = $.let(Data.bind(experimentConfigInput, { mode: 'staged' }));
|
|
201
|
+
const journal = $.let(Data.bind(experimentJournalInput));
|
|
202
|
+
const population = $.let(Data.bind(experimentPopulationInput, { mode: 'staged' }));
|
|
203
|
+
const experiment = $.let(Func.bind(experimentFn));
|
|
204
|
+
return (_jsx(Experiment, { data: data, config: config, experiment: experiment, population: population, journal: journal, columns: { bond_strength: { unit: 'MPa' } }, defaultTab: "dose" }));
|
|
205
|
+
} }))),
|
|
206
|
+
inputs: [],
|
|
207
|
+
});
|
|
208
|
+
//# sourceMappingURL=experiment.examples.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"experiment.examples.js","sourceRoot":"","sources":["../../../test/experiment/experiment.examples.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elaraai/e3-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "e3 + UI bridge — Data bindings, ui() task, manifest",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -56,12 +56,12 @@
|
|
|
56
56
|
"node": ">=22.0.0"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@elaraai/e3-types": "1.0.
|
|
59
|
+
"@elaraai/e3-types": "1.0.13"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"@elaraai/
|
|
63
|
-
"@elaraai/
|
|
64
|
-
"@elaraai/east-ui": "1.0.
|
|
62
|
+
"@elaraai/east": "1.0.13",
|
|
63
|
+
"@elaraai/e3": "1.0.13",
|
|
64
|
+
"@elaraai/east-ui": "1.0.13"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@types/node": "^22",
|
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
"@typescript-eslint/parser": "^8",
|
|
70
70
|
"eslint": "^9",
|
|
71
71
|
"typescript": "~5.9.2",
|
|
72
|
-
"@elaraai/
|
|
73
|
-
"@elaraai/
|
|
72
|
+
"@elaraai/e3": "1.0.13",
|
|
73
|
+
"@elaraai/east-node-std": "1.0.13"
|
|
74
74
|
},
|
|
75
75
|
"scripts": {
|
|
76
76
|
"build": "tsc",
|
package/dist/src/buttons.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"buttons.d.ts","sourceRoot":"","sources":["../../src/buttons.ts"],"names":[],"mappings":""}
|
package/dist/src/buttons.js
DELETED
package/dist/src/buttons.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"buttons.js","sourceRoot":"","sources":["../../src/buttons.ts"],"names":[],"mappings":""}
|