(defn to-levels
"
"
([coll & options]
(let [opts (when options (apply assoc {} options))
cat-var (or (:categorical-var opts) (categorical-var :data coll))
to-levels (:to-levels cat-var)]
(for [label coll] (to-levels label)))))
Comments top
No comments for to-levels. Log in to add a comment.