summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2023-04-28 11:09:05 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2023-04-28 11:09:05 +0200
commitceae7ad214f3f3113186586319080121bd787e9e (patch)
treef6c4ae92bed8e592b8d7695d0eefca0552bf60f3 /lib
parenta14c84469725e06ad07b338fb87318aee5699f32 (diff)
plot_param: do not specify color (superfluous; overridden by colormap)
Diffstat (limited to 'lib')
-rwxr-xr-xlib/plotter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plotter.py b/lib/plotter.py
index 5609c46..1fced3a 100755
--- a/lib/plotter.py
+++ b/lib/plotter.py
@@ -222,7 +222,7 @@ def plot_param(
v = by_other_param[k]
v["X"] = np.array(v["X"])
v["Y"] = np.array(v["Y"])
- plt.plot(v["X"], v["Y"], "ro", color=cm(i), markersize=3)
+ plt.plot(v["X"], v["Y"], "o", color=cm(i), markersize=3)
YY2_legend.append(legend_sanitizer.sub("_", "X_{}".format(k)))
YY2.append(v["X"])
YY2_legend.append(legend_sanitizer.sub("_", "Y_{}".format(k)))