Function Multiple-Modes

Part of:

package cl-mathstats
( multiple-modes &rest < args > )

multiple-modes (data k &key start end key)
Returns the k&#39; most frequent elements of data,' which should be a sequence.
The algorithm involves sorting, and so the data must be numbers or the key&#39;<br> function must produce numbers. Consider #&#39;sxhash if no better function is<br> available. Also returns the number of occurrences of each mode. The value is<br> an association list of modes and their counts. This function is a little more<br> computationally expensive than mode,' so only use it if you really need
multiple modes.