Word description Takes 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 } }