Make a Transformation that computes the count of each unique value in data. This assumes that the category set is unknown.
Value
The carrier type is HashMap<TK, TV>
, a hashmap of the count (TV
) for each unique data input (TK
).
Details
make_count_by in Rust documentation.
Citations:
Supporting Elements:
Input Domain:
VectorDomain<AtomDomain<TK>>
Output Domain:
MapDomain<AtomDomain<TK>, AtomDomain<TV>>
Input Metric:
SymmetricDistance
Output Metric:
MO