R(>= 3.4.1), Rtools(>=34)
Rcpp (>= 0.12.12)
Rcpp
UniDOE is a R package, which implements an efficient stochastic evolutionary(SE) algorithm to search for design of experiment. Computational procedures are mainly achieved by c++ so that the calculation speed is greatly boosted. Users can either download and install from binary source package or install from github directly using devtools, of which details are illustrated below. This package is distributed in the hope that it will be useful, but without any warranty.
At first, Make sure you are using R(>=3.4.1). Typing 'version' in R command line can retrieve related information, e.g.:
version
Output should show corresponding R version and architecture of your current platform:
platform i386-w64-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 3
minor 4.1
year 2017
month 06
day 30
svn rev 72865
language R
version.string R version 3.4.1 (2017-06-30)
nickname Single Candle
UniDOE is currently published to CRAN, users can conveniently install it from R Command line:
install.packages("UniDOE")
This package will be modified and updated in CRAN directly. This github repository may not be the newest version.
Download and install Rcpp(>=0.12.12) package if you haven't installed or updated it to >=0.12.12 version.
In R command-line:
# It's easy to install Rcpp from CRAN
install.packages("Rcpp")
Git clone this repostory to your local machine. After that, you can install UniDOE from local files:
install.packages(file.choose(),repos=NULL)
Choose UniDOE_0.1.1.zip to install Or install it from GUI.
It's more convenient to install UniDOE using devtools. At first, make sure you installed devtools.
install.packages("devtools")
Then install UniDOE from github:
library(devtools)
install_github(repo="HAOYU-LI/UniDOE")
- CRAN page
- Experimental design - Intro to design of experiments
- License - License for this project
- Maintainer