Skip to content

Commit c13025c

Browse files
work on sensitivity analyiss
1 parent cdfa1ba commit c13025c

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/sbmlsim/sensitivity/analysis.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def plot_sobol_indices(
501501
console.print(f"{ymax=}")
502502

503503
for ko, output in enumerate(self.outputs):
504-
f_path = fig_path.parent / f"{fig_path.stem}_{output.uid}{fig_path.suffix}"
504+
f_path = fig_path.parent / f"{fig_path.stem}_{ko:>03}_{output.uid}{fig_path.suffix}"
505505

506506
S1 = self.sensitivity["S1"][:, ko]
507507
ST = self.sensitivity["ST"][:, ko]
@@ -520,12 +520,3 @@ def plot_sobol_indices(
520520
ymax=np.max([1.05, ymax]),
521521
ymin=np.min([-0.05, ymin]),
522522
)
523-
524-
525-
526-
527-
528-
529-
530-
531-

0 commit comments

Comments
 (0)