csv_2_plot: update Y-axis scale configuration to include finer step intervals for power, voltage, and current

Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
This commit is contained in:
2025-12-11 18:07:30 +09:00
parent cc8f1b77ed
commit a15996e493

View File

@@ -83,9 +83,9 @@ def plot_power_data(csv_path, output_path, plot_types, sources,
# --- Plotting Configuration --- # --- Plotting Configuration ---
scale_config = { scale_config = {
'power': {'steps': [5, 20, 50, 160]}, 'power': {'steps': [5, 7, 10, 20, 50, 160]},
'voltage': {'steps': [5, 10, 15, 25]}, 'voltage': {'steps': [5, 7, 10, 15, 20, 25]},
'current': {'steps': [1, 2.5, 5, 10]} 'current': {'steps': [1, 2.5, 5, 7.5, 10]}
} }
plot_configs = { plot_configs = {
'power': {'title': 'Power Consumption', 'ylabel': 'Power (W)', 'cols': [f'{s}_power' for s in sources]}, 'power': {'title': 'Power Consumption', 'ylabel': 'Power (W)', 'cols': [f'{s}_power' for s in sources]},