Repository: https://github.com/renozao/doRNG
The package can be installed from source from the GitHub using the devtools
package as follows:
library(devtools)
# latest development version
install_github('doRNG', 'renozao')
# latest development version
install_github('doRNG', 'renozao', 'develop')
The above commands will perform a complete build/installation, which may require a complete R development environment. This should be fine for standard unix-based R installations (Linux, Mac), but is not installed by default on Windows machines.
So if this fails, then try doing a quick install by:
build_vignette = FALSE
.quick = TRUE
;library(devtools)
# latest development version
# -> no vignette
install_github('doRNG', 'renozao', build_vignettes = FALSE)
# -> minimal installation
install_github('doRNG', 'renozao', quick = TRUE)
# latest development version
install_github('doRNG', 'renozao', 'develop', quick = TRUE)
install_github('doRNG', 'renozao', 'develop', build_vignettes = FALSE)
Project: http://r-forge.r-project.org/projects/dorng
The latest automated build of the package can be installed from R-forge repository as follows:
install.packages("doRNG", repos="http://R-Forge.R-project.org")
This installation method depends on the package's build status on R-forge, which can be checked on the project page > 'R packages' or from R:
'doRNG' %in% rownames(available.packages(contrib.url("http://R-Forge.R-project.org")))