View source: R/greedy_search.R
| resultsGreedySearch | R Documentation |
Returns the results (thus far) of the greedy design search
resultsGreedySearch(obj, max_vectors = 9, form = "one_zero")
obj |
The |
max_vectors |
The number of design vectors you wish to return. |
form |
Which form should it be in? The default is |
Adam Kapelner
## Not run:
set.seed(1)
X = matrix(rnorm(20), nrow = 10)
ged = initGreedyExperimentalDesignObject(
X,
max_designs = 5,
num_cores = 1,
objective = "abs_sum_diff",
start = TRUE,
wait = TRUE,
verbose = FALSE
)
res = resultsGreedySearch(ged, max_vectors = 2)
res$obj_vals
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.