From 5f6e8b7290d97af54256805af18909baca6572cd Mon Sep 17 00:00:00 2001 From: Kiran Jojare Date: Fri, 19 Jul 2024 12:50:23 -0600 Subject: [PATCH] Picture dimentions updated --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 73c7a3c..2d53c9e 100644 --- a/src/main.py +++ b/src/main.py @@ -156,7 +156,7 @@ def plot_signals(parsed_data, signal_name, start_time, end_time): print(f"No data found for signal: {signal_name}") return - plt.figure(figsize=(30, 15)) # Adjust the size as needed + plt.figure(figsize=(15, 5)) # Adjust the size as needed plt.plot(timestamps, values) plt.xlabel('Time (s)') plt.ylabel('Value')