Skip to content

Commit f1e622f

Browse files
committed
Fix notebooks to run with current api
1 parent 07cba62 commit f1e622f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/backends/tracetab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def trace_to_dataframe(trace, chains=None, flat_names=None, hide_transformed_var
2323
if flat_names is None:
2424
flat_names = {v: create_flat_names(v, shape)
2525
for v, shape in var_shapes.items()
26-
if not hide_transformed_vars or not v.endswith('_')}
26+
if not (hide_transformed_vars and v.endswith('_'))}
2727

2828
var_dfs = []
2929
for varname, shape in var_shapes.items():

0 commit comments

Comments
 (0)