diff --git a/src/propeller/tools/math.cljc b/src/propeller/tools/math.cljc index 574dd18..6649cf7 100755 --- a/src/propeller/tools/math.cljc +++ b/src/propeller/tools/math.cljc @@ -11,7 +11,7 @@ count (count coll)] (if (pos? count) (/ sum (float count)) - 0))) + 0.0))) (defn median [coll] (let [sorted (sort coll)