DEPRECATED. Prefer clojure.core version.
Returns a map from distinct items in coll to the number of times
they appear.
(defn frequencies
"DEPRECATED. Prefer clojure.core version.
Returns a map from distinct items in coll to the number of times
they appear."
{:deprecated "1.2"}
[coll]
(reduce (fn [counts x]
(assoc counts x (inc (get counts x 0))))
{} coll))
Comments top
No comments for frequencies. Log in to add a comment.