17 lines
403 B
Plaintext
17 lines
403 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.ml.evaluateDataFrame({
|
|
index: "my_analytics_dest_index",
|
|
evaluation: {
|
|
outlier_detection: {
|
|
actual_field: "is_outlier",
|
|
predicted_probability_field: "ml.outlier_score",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|