diff options
-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 7b793f4..0f34247 100755 --- a/lib/plotter.py +++ b/lib/plotter.py @@ -267,7 +267,7 @@ def plot_param( for x in xsp: xarg = [*k[:param_idx], x, *k[param_idx:]] ysp.append(extra_function(*xarg)) - plt.plot(xsp, ysp, "r--", color=cm(i), linewidth=1, dashes=(3, 3)) + plt.plot(xsp, ysp, "--", color=cm(i), linewidth=1, dashes=(3, 3)) YY.append(ysp) YY_legend.append(legend_sanitizer.sub("_", "symb_{}".format(k))) |