0

So I am going to do some survivalsvm process and I need the mlr3extralearners package from GitHub. When I tried to install it locally using the tar.gz file, it said

Execution halted
Warning in install.packages: installation of package  had non-zero exit status

I also tried to use the zip file, and it said

install.packages("C:/Users/Ivan/Downloads/mlr3extralearners-0.5.49.zip", repos = NULL, type = "win.binary", lib="C:/R-4.2.1/library")

then nothing happened.

I also tried using devtools::install_github("mlr-org/mlr3extralearners"), but the output was the same when I used the tar.gz file. When I checked in my library, I already have the mlr3extralearners package, but when I call it using library(mlr3extralearners), it does not work. Does anyone know how to solve this? Any help is appreciated.

Phil
  • 7,287
  • 3
  • 36
  • 66

1 Answers1

0

https://rdrr.io/github/mlr-org/mlr3extralearners/

I believe this should work for you: Install the latest version of this package by entering the following in R:

install.packages("remotes")
remotes::install_github("mlr-org/mlr3extralearners")
Martin Gal
  • 16,640
  • 5
  • 21
  • 39
AlanJ
  • 131
  • 4