Description Usage Arguments Value References See Also Examples
A simple interface to the Optimal Computing Budget Allocation algorithm.
1 | repeatsOCBA(x, y, budget)
|
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. |
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.
1 2 3 | 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.