repeatsOCBA | R Documentation |
Simple interface to the Optimal Computing Budget Allocation algorithm.
repeatsOCBA(x, y, budget, verbosity = 0)
x |
matrix of samples. Identical rows indicate repeated evaluations. Any sample should be evaluated at least twice, to get an estimate of the variance. |
y |
observations of the respective samples. For repeated evaluations, y should differ (variance not zero). |
budget |
of additional evaluations to be allocated to the samples. |
verbosity |
verbosity |
A vector that specifies how often each solution should be evaluated.
Chun-hung Chen and Loo Hay Lee. 2010. Stochastic Simulation Optimization: An Optimal Computing Budget Allocation (1st ed.). World Scientific Publishing Co., Inc., River Edge, NJ, USA.
repeatsOCBA calls OCBA
, which also provides some additional details.
x <- matrix(c(1:3,1:3),9,2) y <- runif(9) repeatsOCBA(x,y,10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.