1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| if(!require(remotes)){ install.packages('remotes') }
remotes::install_github("profandyfield/discovr")
.libPaths()
remotes::install_github("profandyfield/discovr", lib = "N:/Documents/R/win-library/3.5")
library(discovr)
learnr::run_tutorial("name_of_tutorial", package = "discovr")
learnr::run_tutorial("discovr_02", package = "discovr")
|