|
23 | 23 | (str low)
|
24 | 24 | (str high))))))
|
25 | 25 |
|
| 26 | +(defn random-uniform |
| 27 | + ([] (random-uniform 0.0 1.0)) |
| 28 | + ([low high] (random-uniform low high (rand-int Integer/MAX_VALUE))) |
| 29 | + ([low high seed] |
| 30 | + (let [length (Math/abs (- high low)) |
| 31 | + base (min high low)] |
| 32 | + (column/+ base (column/* length (sql/rand seed)))))) |
| 33 | +(def runiform random-uniform) |
| 34 | +(def runif random-uniform) |
| 35 | + |
| 36 | +(defn random-norm |
| 37 | + ([] (random-norm 0.0 1.0)) |
| 38 | + ([mu sigma] (random-norm mu sigma (rand-int Integer/MAX_VALUE))) |
| 39 | + ([mu sigma seed] (column/+ mu (column/* sigma (sql/randn seed))))) |
| 40 | +(def rnorm random-norm) |
| 41 | + |
| 42 | +(defn random-exp |
| 43 | + ([] (random-exp 1.0)) |
| 44 | + ([rate] (random-exp rate (rand-int Integer/MAX_VALUE))) |
| 45 | + ([rate seed] (-> (sql/rand seed) |
| 46 | + sql/log |
| 47 | + (column/* -1.0) |
| 48 | + (column// rate)))) |
| 49 | +(def rexp random-exp) |
| 50 | + |
| 51 | +(defn random-int |
| 52 | + ([] (random-int 0 (dec Integer/MAX_VALUE))) |
| 53 | + ([low high] (random-int low high (rand-int Integer/MAX_VALUE))) |
| 54 | + ([low high seed] |
| 55 | + (let [length (Math/abs (- high low)) |
| 56 | + base (min high low) |
| 57 | + ->long #(column/cast % "long")] |
| 58 | + (column/+ (->long base) (->long (column/* length (sql/rand seed))))))) |
| 59 | + |
26 | 60 | (defn random-choice
|
27 | 61 | ([choices]
|
28 | 62 | (let [n-choices (count choices)]
|
29 | 63 | (random-choice choices (take n-choices (repeat (/ 1.0 n-choices))))))
|
30 |
| - ([choices probs] |
| 64 | + ([choices probs] (random-choice choices probs (rand-int Integer/MAX_VALUE))) |
| 65 | + ([choices probs seed] |
31 | 66 | (assert (and (= (count choices) (count probs))
|
32 | 67 | (every? pos? probs))
|
33 | 68 | "random-choice args must have same lengths.")
|
34 | 69 | (assert (< (Math/abs (- (apply + probs) 1.0)) 1e-4)
|
35 | 70 | "random-choice probs must some to one.")
|
36 |
| - (let [rand-col (column/->column (sql/rand)) |
| 71 | + (let [rand-col (column/->column (sql/rand seed)) |
37 | 72 | cum-probs (reductions + probs)
|
38 | 73 | choice-cols (map (fn [choice prob]
|
39 | 74 | (sql/when (column/< rand-col (+ prob 1e-6))
|
|
42 | 77 | cum-probs)]
|
43 | 78 | (.as (apply polymorphic/coalesce choice-cols)
|
44 | 79 | (format "choice(%s, %s)" (str choices) (str probs))))))
|
| 80 | +(def rchoice random-choice) |
45 | 81 |
|
46 | 82 | ;; Pandas
|
47 | 83 | (defn value-counts [dataframe]
|
|
0 commit comments