spsanderson / tidyAML

Auto ML for the tidyverse
http://www.spsanderson.com/tidyAML/
Other
64 stars 7 forks source link

Fix `load_deps()` and `install_deps()` #140

Closed spsanderson closed 1 year ago

spsanderson commented 1 year ago

make the load and install deps functions more straightforward.

spsanderson commented 1 year ago
pkgs <- c("openxlsx", "xlsx", "readxl", "readxlsb")
install.packages(pkgs, dependencies = TRUE)
lapply(pkgs, library, character.only = TRUE)

Do something like the above, all the other stuff is not necessary. Keep it simple.