diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-11-06 18:42:03 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-11-06 18:42:03 +0100 |
commit | 112ddcc2ac7050df45cf0a73201d155c020f8500 (patch) | |
tree | 357b16548fe96a55b5492b4ac6bd11986e975b67 | |
parent | 0ee2ff5678c9ec282fce365aae111c3e491b8f1e (diff) |
increase marker size for U/I/P plots
-rwxr-xr-x | bin/kaxxxxp-viewer | 8 |
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]") |