Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuawe committed Oct 12, 2023
2 parents 896625c + f8093d9 commit 95cceee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Binary file modified images/raincloud.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/compare_distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ def plot_raincloud(df: pd.DataFrame,
if x_label is None:
x_label = x_col
plt.xlabel(x_label)
plt.title(title + '\n')
if title:
plt.title(title + '\n')
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
ax.spines['left'].set_visible(False)
Expand Down

0 comments on commit 95cceee

Please sign in to comment.