Skip to main content
Generate Doe
curl --request POST \
  --url https://api.ionworks.com/doe/generate \
  --header 'Content-Type: application/json' \
  --data '
{
  "sampling": "grid",
  "rows": [
    {
      "name": "<string>",
      "type": "discrete",
      "values": [
        123
      ]
    }
  ],
  "count": 123
}
'
[
  {}
]

Body

application/json

Design of Experiments request with rows.

Parameters

sampling Sampling strategy. Supported: grid (cartesian product). rows List of parameter rows; each carries its own type and config fields. count Number of samples for non-grid methods (required). Ignored for grid sampling.

sampling
string
default:grid
rows
(DiscreteParam · object | RangeParam · object | NormalParam · object)[]

Discrete parameter configuration.

Parameters

name Parameter name. values List of allowed numeric values.

count
integer | null

Response

Successful Response

{key}
number