create_observation {SigOptR} | R Documentation |
Create an observation for an experiment
Description
Create an observation for an experiment
Usage
create_observation(experiment_id, body)
Arguments
experiment_id |
the id of an experiment to create an observation for |
body |
POST body of create request |
Value
observation created by SigOpt
Examples
env <- Sys.getenv("NOT_CRAN")
if (!identical(env, "true")) {
0
} else {
experiment <- create_experiment(list(
name="R test experiment",
parameters=list(
list(name="x1", type="double", bounds=list(min=0, max=100)),
list(name="x2", type="double", bounds=list(min=0, max=100))
)
))
suggestion <- create_suggestion(experiment$id)
create_observation(experiment$id, list(suggestion=suggestion$id, value=99.08))
create_observation(experiment$id, list(suggestion=suggestion$id, value=99.58, value_stddev=0.1))}
[Package SigOptR version 0.0.1 Index]