Word description Returns a hashtable where the keys are the elements of the sequence binned by being passed through quot, and the values are the number of times members of each bin appeared in that sequence.
Examples
! Count the number of times letters and non-letters appear in a sequence.
USING: prettyprint math.statistics unicode ;
"aaa123bc" [ letter? ] histogram-by . H{ { t 5 } { f 3 } }