Skip to content

Commit

Permalink
🎉 Start Replacing PyMC3 plots with arviz plots in examples
Browse files Browse the repository at this point in the history
* Related to issue pymc-devs/pymc#4371
  • Loading branch information
CloudChaoszero committed Jan 4, 2021
1 parent a093bcc commit 041e54f
Show file tree
Hide file tree
Showing 3 changed files with 379 additions and 435 deletions.
255 changes: 104 additions & 151 deletions examples/case_studies/BEST.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/case_studies/lightspeed_example.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import numpy as np

import arviz as az
import pymc3 as pm

light_speed = np.array(
Expand Down Expand Up @@ -92,7 +92,7 @@ def run(n=5000):
with model_1:
trace = pm.sample(n)

pm.summary(trace)
az.summary(trace)


if __name__ == "__main__":
Expand Down
Loading

0 comments on commit 041e54f

Please sign in to comment.