cts.confidence( [node as Node] ) as Number
Returns the confidence of a node, or of the context node if no node is provided.
Parameters | |
---|---|
node |
A node. Typically this is an item in the result sequence of a
cts:search operation.
|
Confidence is similar to score, except that it is bounded.
It is similar to fitness, except that it is influenced by term IDFs.
It is an xs:float
in the range of 0.0 to 1.0.
It does not include quality.
When using with any of the scoring methods, the confidence is calculated by first bounding the score in the range of 0.0 to 1.0, then taking the square root of that number.
const res = new Array(); const count = 0; const s = cts.search("dog"); for (const item of s) { count++; if (count > 3) { break;} res.push(cts.confidence(item)); res.push(xdmp.nodeUri(item)); } res; // returns an array of the confidence numbers and the URI for the // first 3 items returned by the search
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.