jaccard_index()

Learn how to use the jaccard_index() function to calculate the Jaccard index of two input sets.

Calculates the Jaccard index of two input sets.

Syntax

jaccard_index(set1, set2)

Parameters

NameTypeRequiredDescription
set1dynamic✔️The array representing the first set for the calculation.
set2dynamic✔️The array representing the second set for the calculation.

Returns

The Jaccard index of the two input sets. The Jaccard index formula is |set1set2| / |set1set2|.

Examples

print set1=dynamic([1,2,3]), set2=dynamic([1,2,3,4])
| extend jaccard=jaccard_index(set1, set2)

Output

set1set2jaccard
[1,2,3][1,2,3,4]0.75