Skip to content

Commit

Permalink
Fixes #178
Browse files Browse the repository at this point in the history
  • Loading branch information
cnuernber committed Nov 29, 2020
1 parent 8775687 commit 2c1779e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
(defproject techascent/tech.ml.dataset "5.00-beta-13-SNAPSHOT"
(defproject techascent/tech.ml.dataset "5.00-beta-12-SNAPSHOT"
:description "Clojure high performance data processing system"
:url "http://github.com/techascent/tech.ml.dataset"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.2-alpha1"]
[camel-snake-kebab "0.4.2"]
[cnuernber/dtype-next "6.00-beta-8"]
[cnuernber/dtype-next "6.00-beta-9"]
[techascent/tech.io "4.02"
:exclusions [org.apache.commons/commons-compress]]
[com.univocity/univocity-parsers "2.9.0"]
Expand Down
8 changes: 8 additions & 0 deletions test/tech/v3/dataset_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,14 @@
(vec (dsc :a))))))


(deftest concat-inplace-desc-stats
(let [ds (ds/->dataset [{"A" 1 "B" 2} {"A" 2 "B" 3}])]
(is (dfn/equals [1.5 2.5]
(-> (ds/concat ds ds)
(ds/descriptive-stats)
(:mean))))))


(comment

(def test-ds (ds/->dataset
Expand Down

0 comments on commit 2c1779e

Please sign in to comment.