Skip to content

Commit e46537f

Browse files
committed
Fix palette order for boxplot
1 parent 4afbcd0 commit e46537f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/simdec/visualization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def visualization(
157157
elif kind == "boxplot":
158158
ax = sns.boxplot(
159159
bins,
160-
palette=palette[::-1],
160+
palette=palette,
161161
orient="h",
162162
order=list(bins.columns)[::-1],
163163
ax=ax,

0 commit comments

Comments
 (0)