diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2022-08-24 08:52:27 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2022-08-24 08:52:27 +0200 |
commit | f88cfb62b6b527fc7bff15f49e99e6920a13502e (patch) | |
tree | d44fecc5caf97445b0b8c8d8c4e9e91dc3a345d9 /lib/plotter.py | |
parent | ffa44e06b51c59f3490265a93a0ac2027596d645 (diff) |
plot_param: support AnalyticModel instances
Diffstat (limited to 'lib/plotter.py')
-rwxr-xr-x | lib/plotter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plotter.py b/lib/plotter.py index 85796cf..5609c46 100755 --- a/lib/plotter.py +++ b/lib/plotter.py @@ -198,7 +198,7 @@ def plot_param( legend_sanitizer = re.compile(r"[^0-9a-zA-Z]+") - for k, v in model.by_param.items(): + for k, v in model.get_by_param().items(): if k[0] == state_or_trans: other_param_key = (*k[1][:param_idx], *k[1][param_idx + 1 :]) if other_param_key not in by_other_param: |