efleonard3
These are all great questions! For this competition, we are looking for students to implement their model in such a format my_model <- lm(default_rate ~ ..., data = train)
. I believe you are allowed to define any relationship between predictors by using other operations than "+".
We know there are many other advanced ways to generate a model with higher predictive power but we ask all students to follow this format: my_model <- lm(default_rate ~ ..., data = train)
.