Skip to content

Commit 11c4cde

Browse files
committed
Do not clip to 0
1 parent d8a2a05 commit 11c4cde

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

panel/simdec_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ def callback_docs(event):
678678
pn.HSpacer(),
679679
download_file_button,
680680
docs,
681-
docs_button,
681+
# docs_button,
682682
info_button,
683683
issue_button,
684684
# logout_button,

src/simdec/sensitivity_indices.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ def sensitivity_indices(
164164

165165
soe[i, j] = (var_ij - var_i - var_j) / var_y
166166

167-
soe = np.clip(soe, a_min=0, a_max=None)
168167
soe = np.where(soe == 0, soe.T, soe)
169168
si[i] = foe[i] + soe[:, i].sum() / 2
170169

0 commit comments

Comments
 (0)