summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-11-06 18:42:03 +0100
committerDaniel Friesel <derf@finalrewind.org>2021-11-06 18:42:03 +0100
commit112ddcc2ac7050df45cf0a73201d155c020f8500 (patch)
tree357b16548fe96a55b5492b4ac6bd11986e975b67
parent0ee2ff5678c9ec282fce365aae111c3e491b8f1e (diff)
increase marker size for U/I/P plots
-rwxr-xr-xbin/kaxxxxp-viewer8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/kaxxxxp-viewer b/bin/kaxxxxp-viewer
index 93467ea..742d6af 100755
--- a/bin/kaxxxxp-viewer
+++ b/bin/kaxxxxp-viewer
@@ -396,22 +396,22 @@ def plot_data(data, mode):
plt.ylabel("Power [W]")
elif mode == "UI":
- plt.plot(data[:, 1], data[:, 2], "bs", markersize=1)
+ plt.plot(data[:, 1], data[:, 2], "bs", markersize=2)
plt.xlabel("Voltage [V]")
plt.ylabel("Current [A]")
elif mode == "UP":
- plt.plot(data[:, 1], data[:, 1] * data[:, 2], "bs", markersize=1)
+ plt.plot(data[:, 1], data[:, 1] * data[:, 2], "bs", markersize=2)
plt.xlabel("Voltage [V]")
plt.ylabel("Power [W]")
elif mode == "IU":
- plt.plot(data[:, 2], data[:, 1], "bs", markersize=1)
+ plt.plot(data[:, 2], data[:, 1], "bs", markersize=2)
plt.xlabel("Current [A]")
plt.ylabel("Voltage [V]")
elif mode == "IP":
- plt.plot(data[:, 2], data[:, 1] * data[:, 2], "bs", markersize=1)
+ plt.plot(data[:, 2], data[:, 1] * data[:, 2], "bs", markersize=2)
plt.xlabel("Current [A]")
plt.ylabel("Power [W]")