Skip to content

Commit eb5417e

Browse files
committed
nit
1 parent 92cb570 commit eb5417e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/source/tutorials/hillstrom.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,14 +269,14 @@ Revenue Category Analysis with PTE
269269
.. code-block:: python
270270
271271
# Compute Probability Treatment Effects
272-
pte_simple, pte_lower_simple, pte_upper_simple = simple_email.predict_pte(
272+
pte_simple, pte_lower_simple, pte_upper_simple = simple_estimator.predict_pte(
273273
target_treatment_arm=1, # Women's email
274274
control_treatment_arm=0, # Men's email
275275
locations=[-1] + revenue_locations,
276276
variance_type="moment"
277277
)
278278
279-
pte_ml, pte_lower_ml, pte_upper_ml = ml_email.predict_pte(
279+
pte_ml, pte_lower_ml, pte_upper_ml = ml_estimator.predict_pte(
280280
target_treatment_arm=1, # Women's email
281281
control_treatment_arm=0, # Men's email
282282
locations=[-1] + revenue_locations,

0 commit comments

Comments
 (0)