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))