Skip to content

Commit

Permalink
Merge pull request pymc-devs#22 from CloudChaoszero/replace-pymc3-arv…
Browse files Browse the repository at this point in the history
…iz-plots_part8

Replacing PyMC3 plots w/ Arviz plots & sigma Param change [Part 8]
  • Loading branch information
twiecki authored Mar 8, 2021
2 parents d50e6a5 + beb6804 commit 6fac0a3
Show file tree
Hide file tree
Showing 4 changed files with 282 additions and 312 deletions.
360 changes: 153 additions & 207 deletions examples/survival_analysis/bayes_param_survival_pymc3.ipynb

Large diffs are not rendered by default.

115 changes: 67 additions & 48 deletions examples/survival_analysis/censored_data.ipynb

Large diffs are not rendered by default.

111 changes: 58 additions & 53 deletions examples/survival_analysis/cox_model.ipynb

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions examples/survival_analysis/survival_analysis.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@
}
],
"source": [
"pm.plot_posterior(trace, var_names=[\"beta\"], color=\"#87ceeb\");"
"az.plot_posterior(trace, var_names=[\"beta\"], color=\"#87ceeb\");"
]
},
{
Expand All @@ -552,7 +552,7 @@
}
],
"source": [
"pm.autocorrplot(trace, var_names=[\"beta\"]);"
"az.plot_autocorr(trace, var_names=[\"beta\"]);"
]
},
{
Expand Down Expand Up @@ -734,7 +734,7 @@
}
],
"source": [
"pm.forestplot(time_varying_trace, var_names=[\"beta\"]);"
"az.plot_forest(time_varying_trace, var_names=[\"beta\"]);"
]
},
{
Expand Down Expand Up @@ -974,7 +974,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.2"
"version": "3.8.5"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 6fac0a3

Please sign in to comment.