Skip to content

Commit

Permalink
Fix notebooks to run with current api
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Oct 18, 2016
1 parent 07cba62 commit f1e622f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc3/backends/tracetab.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def trace_to_dataframe(trace, chains=None, flat_names=None, hide_transformed_var
if flat_names is None:
flat_names = {v: create_flat_names(v, shape)
for v, shape in var_shapes.items()
if not hide_transformed_vars or not v.endswith('_')}
if not (hide_transformed_vars and v.endswith('_'))}

var_dfs = []
for varname, shape in var_shapes.items():
Expand Down

0 comments on commit f1e622f

Please sign in to comment.