Skip to content

Commit e23da4c

Browse files
committed
remove filter_vars="regex" from plot_trace
1 parent 060dc04 commit e23da4c

File tree

2 files changed

+220
-220
lines changed

2 files changed

+220
-220
lines changed

examples/generalized_linear_models/GLM-simpsons-paradox.ipynb

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

examples/generalized_linear_models/GLM-simpsons-paradox.myst.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ with linear_regression:
133133
```
134134

135135
```{code-cell} ipython3
136-
az.plot_trace(idata, filter_vars="regex", var_names=["~μ"]);
136+
az.plot_trace(idata, var_names=["~μ"]);
137137
```
138138

139139
### Visualisation
@@ -256,7 +256,7 @@ pm.model_to_graphviz(ind_slope_intercept)
256256
with ind_slope_intercept:
257257
idata = pm.sample()
258258
259-
az.plot_trace(idata, filter_vars="regex", var_names=["~μ"]);
259+
az.plot_trace(idata, var_names=["~μ"]);
260260
```
261261

262262
### Visualisation
@@ -413,7 +413,7 @@ pm.model_to_graphviz(hierarchical)
413413
with hierarchical:
414414
idata = pm.sample(tune=2000, target_accept=0.99)
415415
416-
az.plot_trace(idata, filter_vars="regex", var_names=["~μ"]);
416+
az.plot_trace(idata, var_names=["~μ"]);
417417
```
418418

419419
### Visualise

0 commit comments

Comments
 (0)