
math.linearModelIntercept( linear-model as math.linearModel ) as Number
Returns the intercept of the linear model.
| Parameters | |
|---|---|
| linear-model | A linear model. |
var arr = new Array();
for (i=1; i < 11; i++) {
var x = new Array();
var j = 2 * i + 1;
x.push(j, i);
arr.push(x); };
var lm = math.linearModel(xdmp.arrayValues(arr));
math.linearModelIntercept(lm);
=> 1
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.