40 lines
817 B
Plaintext
40 lines
817 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.putDataFrameAnalytics({
|
|
id: "model-flight-delays-pre",
|
|
source: {
|
|
index: ["kibana_sample_data_flights"],
|
|
query: {
|
|
range: {
|
|
DistanceKilometers: {
|
|
gt: 0,
|
|
},
|
|
},
|
|
},
|
|
_source: {
|
|
includes: [],
|
|
excludes: ["FlightDelay", "FlightDelayType"],
|
|
},
|
|
},
|
|
dest: {
|
|
index: "df-flight-delays",
|
|
results_field: "ml-results",
|
|
},
|
|
analysis: {
|
|
regression: {
|
|
dependent_variable: "FlightDelayMin",
|
|
training_percent: 90,
|
|
},
|
|
},
|
|
analyzed_fields: {
|
|
includes: [],
|
|
excludes: ["FlightNum"],
|
|
},
|
|
model_memory_limit: "100mb",
|
|
});
|
|
console.log(response);
|
|
----
|