Question: fill_eval_df
fill_eval_df <- function(model_name, accuracy, ppv, auc, f1_score) { eval_df[nrow(eval_df) + 1, ] <<- c(model_name, accuracy, ppv, auc, f1_score) } # Example observations for unique models fill_eval_df("LogR1", 0.8506, 0.8278, 0.9356, 0.8519) fill_eval_df("LogR2", 0.8501, 0.8262, 0.9352, 0.8516) fill_eval_df("DT", 0.8373, 0.8136, 0.8595, 0.8391) fill_eval_df("ANN1", 0.7957, 0.8930, 0.8354, 0.7604) fill_eval_df("ANN2", 0.8434, 0.8074, 0.8997, 0.8482).Which model would you suggest MWUF should use for targeting donors using the statistics in the table above. Discuss which model would maximize the profit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
