We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92cb570 commit eb5417eCopy full SHA for eb5417e
1 file changed
docs/source/tutorials/hillstrom.rst
@@ -269,14 +269,14 @@ Revenue Category Analysis with PTE
269
.. code-block:: python
270
271
# Compute Probability Treatment Effects
272
- pte_simple, pte_lower_simple, pte_upper_simple = simple_email.predict_pte(
+ pte_simple, pte_lower_simple, pte_upper_simple = simple_estimator.predict_pte(
273
target_treatment_arm=1, # Women's email
274
control_treatment_arm=0, # Men's email
275
locations=[-1] + revenue_locations,
276
variance_type="moment"
277
)
278
279
- pte_ml, pte_lower_ml, pte_upper_ml = ml_email.predict_pte(
+ pte_ml, pte_lower_ml, pte_upper_ml = ml_estimator.predict_pte(
280
281
282
0 commit comments