Skip to content

Commit 041e54f

Browse files
🎉 Start Replacing PyMC3 plots with arviz plots in examples
* Related to issue pymc-devs/pymc#4371
1 parent a093bcc commit 041e54f

File tree

3 files changed

+379
-435
lines changed

3 files changed

+379
-435
lines changed

examples/case_studies/BEST.ipynb

Lines changed: 104 additions & 151 deletions
Large diffs are not rendered by default.

examples/case_studies/lightspeed_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import numpy as np
2-
2+
import arviz as az
33
import pymc3 as pm
44

55
light_speed = np.array(
@@ -92,7 +92,7 @@ def run(n=5000):
9292
with model_1:
9393
trace = pm.sample(n)
9494

95-
pm.summary(trace)
95+
az.summary(trace)
9696

9797

9898
if __name__ == "__main__":

0 commit comments

Comments
 (0)