From 649f05d3304f0aa1721021d06f6c2a6b5a054893 Mon Sep 17 00:00:00 2001 From: YoungSoo Shin Date: Tue, 9 Dec 2025 16:26:16 +0900 Subject: [PATCH] edit plot title Signed-off-by: YoungSoo Shin --- example/logger/csv_2_plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/logger/csv_2_plot.py b/example/logger/csv_2_plot.py index 0187ee9..5fd1277 100644 --- a/example/logger/csv_2_plot.py +++ b/example/logger/csv_2_plot.py @@ -110,7 +110,7 @@ def plot_power_data(csv_path, output_path, plot_types, sources): # Add a main title to the figure start_time = df['timestamp'].iloc[0].strftime('%Y-%m-%d %H:%M:%S') end_time = df['timestamp'].iloc[-1].strftime('%H:%M:%S') - fig.suptitle(f'ODROID Power Log ({start_time} to {end_time})', fontsize=16, y=0.95) + fig.suptitle(f'PowerMate Log ({start_time} to {end_time})', fontsize=16, y=0.95) # Adjust layout to prevent titles/labels from overlapping plt.tight_layout(rect=[0, 0, 1, 0.94])