Skip to content
Snippets Groups Projects
Commit 0d7d73ad authored by Dennis Noll's avatar Dennis Noll
Browse files

[plotting] fixed typo

parent 4e6bcb46
Branches
No related tags found
No related merge requests found
......@@ -347,8 +347,8 @@ def figure_weight_study(
def figure_multihist(data, columns=None):
fig, ax = plt.subplots()
df = pd.DataFrame(np.reshape(data, (data.shape[0], -1)), columns=columns)
with warnings.simplefilter("ignore"): # temporary fix outdated pandas
df.hist(figsize=(20, 20))
warnings.simplefilter("ignore") # temporary fix outdated pandas
df.hist(figsize=(20, 20))
fig.tight_layout()
return fig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment