Closed genmeblog closed 2 years ago
https://clojurians.zulipchat.com/#narrow/stream/151924-data-science/topic/Simple.20Tablecloth.20beginnings/near/282603903
;; object-array not supported (-> (map object-array [["1" 2] ["3" 4]]) (into-array) (tc/dataset {:column-names [:a :b]})) ;; _unnamed [1 1]: ;; | :$value | ;; |-------------------------------| ;; | [[Ljava.lang.Object;@5698a41c |
Next version:
(-> (map object-array [["1" 2] ["3" 4]]) (into-array) (dataset {:column-names [:a :b]})) ;; => _unnamed [2 2]: ;; | :a | :b | ;; |----|----| ;; | 1 | 3 | ;; | 2 | 4 |
https://clojurians.zulipchat.com/#narrow/stream/151924-data-science/topic/Simple.20Tablecloth.20beginnings/near/282603903