pub fn make_count_distinct<TIA, TO>(
    
) -> Fallible<Transformation<VectorDomain<AtomDomain<TIA>>, AtomDomain<TO>, SymmetricDistance, AbsoluteDistance<TO>>>where
    TIA: Hashable,
    TO: Number,
Expand description

Make a Transformation that computes a count of the number of unique, distinct records in data.

Citations

Generics

  • TIA - Atomic Input Type. Input data is expected to be of the form Vec<TIA>.
  • TO - Output Type. Must be numeric.