Skip to content
gh-pages
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
 
 
 
 
 
 
 
 
 
 

README.md

DMLC drat Repo

This drat package repository provides R packages from DMLC code repositories.

Usage

# first add the repo
drat::addRepo("dmlc")
# either install just one or more given packages
install.packages("xgboost")
# or update already installed packages
update.packages()

Note

The mxnet package has been moved to S3.

To install the CPU-only package on Windows/OSX:

cran <- getOption("repos")
cran["dmlc"] <- "https://s3-us-west-2.amazonaws.com/apache-mxnet/R/CRAN/"
options(repos = cran)
install.packages("mxnet")

To install the GPU-enabled package on Windows:

cran <- getOption("repos")
cran["dmlc"] <- "https://s3-us-west-2.amazonaws.com/apache-mxnet/R/CRAN/GPU"
options(repos = cran)
install.packages("mxnet")

License

Packages in this repository are available under their respective license.

About

Drat Repository for DMLC R packages

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.