22 lines
457 B
Plaintext
22 lines
457 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: "house_price_regression_analysis",
|
|
source: {
|
|
index: "houses_sold_last_10_yrs",
|
|
},
|
|
dest: {
|
|
index: "house_price_predictions",
|
|
},
|
|
analysis: {
|
|
regression: {
|
|
dependent_variable: "price",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|