This documentation is for Machine Learner 1.0.0. View documentation for the latest release.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter description

Parameter
Description
{dataset_id}ID of the dataset which you need to retrieve.

Example cURL command

Code Block
languagetext
curl -X POST -d @<JSON_PAYLOAD> -H "Content-Type: application/json" -H "Authorization: Basic YWRtaW46YWRtaW4=" -v https://localhost:9443/api/datasets/1/scatter -k

<JSON_PAYLOAD>
{
"tenantId" : -1234,
"user" : "admin",
"versionsetId" : 1,
"xAxisFeature" : "Age",
"yAxisFeature" : "NumPregnancies",
"groupByFeature" : "Class"
}

Example

Code Block
languagetext
GET https://localhost:9443/api/datasets/{datasetId}/scatter

Sample output

Code Block
languagetext
[
{
"44.0":{"12.0":"0"}
},
{
"47.0":{"5.0":"0"}
},
{
"21.0":{"2.0":"0"}
}
]

REST API response

HTTP status code

200, 404 or 500

For descriptions of the HTTP status codes, see HTTP Status Codes.