From 8cd3e69f5f87d7fe55243fcbfcead42be8dab70e Mon Sep 17 00:00:00 2001 From: Jeroen Date: Sun, 24 Mar 2024 20:19:08 +0100 Subject: [PATCH] Made background data in R clean_df default to null --- submission.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submission.R b/submission.R index 604abc1..6f12557 100644 --- a/submission.R +++ b/submission.R @@ -16,7 +16,7 @@ # List your packages here. Don't forget to update packages.R! library(dplyr) # as an example, not used here -clean_df <- function(df, background_df){ +clean_df <- function(df, background_df=NULL){ # Preprocess the input dataframe to feed the model. ### If no cleaning is done (e.g. if all the cleaning is done in a pipeline) leave only the "return df" command