How can I shuffle a incanter dataset?
(shuffle (:rows data-set))
Only returns a clojure vector of maps.
This worked for me:
(col-names data-set) (dataset (col-names data-set) (shuffle (:rows data-set)))
Attention: dataset is the incanter data set type. While data-set is a instance of that type which contains my data.
dataset
data-set