Chris Curro

Results 1 issues of Chris Curro

**Notebook title**: What is A/B testing? **Notebook url**: https://github.com/pymc-devs/pymc-examples/blob/main/examples/case_studies/bayesian_ab_testing.ipynb ## Issue description In the `RevenueModel` class the `converted` object goes unused: ```python converted = pm.Binomial( "converted", n=visitors, p=theta, observed=purchased, shape=num_variants...