From fc43a559781336fcb1d582eeca009c9f13816f47 Mon Sep 17 00:00:00 2001 From: Tamas Gal <himself@tamasgal.com> Date: Tue, 30 Jul 2024 09:27:37 +0200 Subject: [PATCH] Fix time residuals --- backend/scripts/time_residuals.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/scripts/time_residuals.py b/backend/scripts/time_residuals.py index 7c0bb25..758fd2f 100755 --- a/backend/scripts/time_residuals.py +++ b/backend/scripts/time_residuals.py @@ -41,7 +41,6 @@ def main(): args['TIME_RESIDUALS_FILE'], names=["run", "timestamp", "du", "floor", "dom_id", "t_res", "Q"] ) - df = pd.read_csv(args['TIME_RESIDUALS_FILE']) df = df[df.timestamp > time.time() - 60 * 60 * hours] print(f" -> number of entries: {len(df)}") -- GitLab