We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdfa1ba commit c13025cCopy full SHA for c13025c
src/sbmlsim/sensitivity/analysis.py
@@ -501,7 +501,7 @@ def plot_sobol_indices(
501
console.print(f"{ymax=}")
502
503
for ko, output in enumerate(self.outputs):
504
- f_path = fig_path.parent / f"{fig_path.stem}_{output.uid}{fig_path.suffix}"
+ f_path = fig_path.parent / f"{fig_path.stem}_{ko:>03}_{output.uid}{fig_path.suffix}"
505
506
S1 = self.sensitivity["S1"][:, ko]
507
ST = self.sensitivity["ST"][:, ko]
@@ -520,12 +520,3 @@ def plot_sobol_indices(
520
ymax=np.max([1.05, ymax]),
521
ymin=np.min([-0.05, ymin]),
522
)
523
-
524
525
526
527
528
529
530
531
0 commit comments