From 8b44b1348af4ffce0a71584440fc11ed5482d2cc Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 16 Jan 2024 13:41:28 +0100 Subject: plotter: remove useless 'red' colour specifier --- lib/plotter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plotter.py b/lib/plotter.py index f698be2..d7e8839 100755 --- a/lib/plotter.py +++ b/lib/plotter.py @@ -256,7 +256,7 @@ def plot_param( for x in xsp: xarg = [*k[:param_idx], x, *k[param_idx:]] ysp.append(param_model(state_or_trans, attribute, param=xarg)) - plt.plot(xsp, ysp, "r-", color=cm(i), linewidth=0.5) + plt.plot(xsp, ysp, "-", color=cm(i), linewidth=0.5) YY.append(ysp) YY_legend.append(legend_sanitizer.sub("_", "regr_{}".format(k))) if extra_function is not None: -- cgit v1.2.3