Skip to content

Commit 4e87e44

Browse files
committed
Fix scenario number order
1 parent e9db57e commit 4e87e44

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
@@ -250,7 +250,7 @@ def tableau(
250250
# only select/ordering interesting columns
251251
table = table[["colour", "std", "min", "mean", "max", "probability"]]
252252

253-
table.insert(loc=0, column="N°", value=np.arange(1, stop=len(table) + 1))
253+
table.insert(loc=0, column="N°", value=np.arange(1, stop=len(table) + 1)[::-1])
254254

255255
# style the colour background with palette
256256
cmap = mpl.colors.ListedColormap(palette[::-1])

0 commit comments

Comments
 (0)