From f7e864760fa9c967081e82fa01ddf9cf453b1e52 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Wed, 1 Apr 2026 09:37:50 +0200 Subject: [PATCH] riduzione finestra osservazione nel tratto utile --- plot_temperatura.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plot_temperatura.py b/plot_temperatura.py index fac8268..94c8aaf 100644 --- a/plot_temperatura.py +++ b/plot_temperatura.py @@ -3,6 +3,7 @@ import matplotlib.pyplot as plt df = pd.read_csv("data.csv") df["time_s"] = df["time since start [ms]"] / 1000.0 +df = df[df["time_s"] >= 105] fig, ax = plt.subplots(figsize=(12, 5))