Vocabularymath.statisticsInputs and outputsWord descriptionTakes an existing hashtable and uses
histogram to continue counting the number of occurrences of each element.
Examples! Count the number of times the elements of two sequences appear.
USING: prettyprint math.statistics ;
"aaabc" histogram "aaaaaabc" histogram! .
H{ { 97 9 } { 98 2 } { 99 2 } }
Definition