From 82589721d0b414a0c89aeffd4f7d96b34d7e7dbe Mon Sep 17 00:00:00 2001 From: Jeroen Date: Sun, 10 Mar 2024 19:44:49 +0100 Subject: [PATCH] Removed clean from run.R This avoids double cleaning. --- run.R | 3 --- 1 file changed, 3 deletions(-) diff --git a/run.R b/run.R index 447dd0f..1ffa7c7 100644 --- a/run.R +++ b/run.R @@ -89,9 +89,6 @@ run_predict <- function(input_path, output=NULL) { # Read data from input file df <- read.csv(input_path, encoding="latin1") - # Clean the data - df <- clean_df(df) # Assuming clean_df is a function in the submission package - # Make predictions predictions <- predict_outcomes(df) # Assuming predict_outcomes is a function in the submission package