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
Required features: contrib
make_count_by in Rust documentation.
Citations:
Supporting Elements:
Input Domain:
VectorDomain<AtomDomain<TK>>Output Domain:
SymmetricDistanceInput Metric:
MapDomain<AtomDomain<TK>, AtomDomain<TV>>Output Metric:
L01InfDistance<AbsoluteDistance<TV>>