apoc.coll.frequencies
Function APOC Core
apoc.coll.frequencies(coll) - returns a list of frequencies of the items in the collection, keyed by item
and count
(e.g., [{item: xyz, count:2}, {item:zyx, count:5}, {item:abc, count:1}]
)
Usage Examples
The following returns a list of maps containing each item and their frequency in a collection:
RETURN apoc.coll.frequencies([1,3,5,7,9,9]) AS output;
Output |
---|
|