Hi,
I would like to have more details or help for the following error:
“31. └─vctrs:::stop_subscript(…)”
I encountered it severals time, when submit (the error didn’t appear when run in the R Colab Notebook). See submission #111920. The only thing I changed from the previous submission which works is the addition of some dummies. I use the library fastDummies
, maybe the problem came from this.
fastDummies::dummy_cols(remove_most_frequent_dummy = TRUE, remove_selected_columns = TRUE)
A second question I have, related to the section “Packages” in the notebook: do I have to comment it (as below), this way installations will not be executed during the submission, or do I have to let it (the submission will take more time)?
install_packages <- function() {
#install.packages("caret")
#install.packages("fastDummies")
#install.packages("xgboost")
#install.packages("tidyverse")
}
install_packages()
Thanks.