fetch_experiment: Fetch an experiment

Description Usage Arguments Value Examples

Description

Fetch an experiment

Usage

1
fetch_experiment(experiment_id, body = NULL)

Arguments

experiment_id

the id of an experiment to fetch

body

Url params of GET request

Value

SigOpt experiment with id experiment_id

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
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))
  )
))
fetch_experiment(experiment$id)}

SigOptR documentation built on May 2, 2019, 1:26 p.m.