Skip to content

Commit 32eee57

Browse files
committed
Fix "Sum of Indices" in table
1 parent 49ea7f7 commit 32eee57

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

panel/app.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ def explained_variance_80(sensitivity_indices_table):
137137
# pos_80 = min(len(si), pos_80)
138138

139139
input_names = sensitivity_indices_table.value["Inputs"]
140-
return input_names.to_list()[: pos_80 + 1]
140+
input_names = input_names.to_list()
141+
input_names.remove("Sum of Indices")
142+
return input_names[: pos_80 + 1]
141143

142144

143145
@pn.cache

0 commit comments

Comments
 (0)