Returns a dataset created by combining the rows of the given datasets and/or collections.
Examples:
(use '(incanter core datasets))
(def cars (get-dataset :cars))
(view (conj-rows (to-dataset (range 5)) (to-dataset (range 5 10))))
(view (conj-rows cars cars))
(view (conj-rows [[1 2] [3 4]] [[5 6] [7 8]]))
(view (conj-rows [{:a 1 :b 2} {:a 3 :b 4}] [[5 6] [7 8]]))
(view (conj-rows (to-dataset [{:a 1 :b 2} {:a 3 :b 4}]) [[5 6] [7 8]]))
(conj-rows (range 5) (range 5 10))
Comments top
No comments for conj-rows. Log in to add a comment.