Skip to content

Commit

Permalink
Change distplot to histplot
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Sep 4, 2024
1 parent 17eb40c commit 75a7025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rhodium/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def hist(model, data, keys=None):
sns.despine(left=True)

for i, k in enumerate(keys):
sns.distplot(df[k], kde=False, ax=axes[i])
sns.histplot(df[k], kde=False, ax=axes[i])

plt.setp(axes, yticks=[])
plt.tight_layout()
Expand Down

0 comments on commit 75a7025

Please sign in to comment.