(ansari m n)(arcsine a b)(beta a b)(beta-binomial mu sigma bd)(beta-prime a b)(binomial n p)(cauchy location scale)(chi df)(chi-square df)(create-distribution-form [cls params])creates the defn form for a particular distribution
(create-distribution-form [net.sourceforge.jdistlib.Wilcoxon [:m :n]]) => '(defn wilcoxon [m n] (net.sourceforge.jdistlib.Wilcoxon. m n))
creates the `defn` form for a particular distribution
(create-distribution-form [net.sourceforge.jdistlib.Wilcoxon [:m :n]])
=> '(defn wilcoxon [m n]
(net.sourceforge.jdistlib.Wilcoxon. m n))(create-distributions)(create-distributions dists)creates all methods for constructing distributions
(create-distributions)
creates all methods for constructing distributions (create-distributions)
(cumulative dist x)returns the cumulative density for the distribution
(cumulative (laplace 1 2) 4) => 0.888434919925785
(cumulative (binomial 10 0.3) [1 2 3]) => [0.14930834590000003 0.38278278639999974 0.6496107184000002]
returns the cumulative density for the distribution (cumulative (laplace 1 2) 4) => 0.888434919925785 (cumulative (binomial 10 0.3) [1 2 3]) => [0.14930834590000003 0.38278278639999974 0.6496107184000002]
(exponential scale)(extreme dist mlen largest)(f df1 df2)(fn-name cls)creates a function name based on class
(fn-name net.sourceforge.jdistlib.evd.Order) => "order"
creates a function name based on class (fn-name net.sourceforge.jdistlib.evd.Order) => "order"
(fretchet loc scale shape)(gamma scale shape)(generalized-pareto loc scale shape)(geometric p)(gev loc scale shape)(gumbel loc scale)(hyper-geometric r b n)(inv-gamma shape scale)(inv-normal mu sigma)(kendall n)(kumaraswamy a b)(laplace location scale)(levy mu sigma)(log-normal meanlog sdlog)(logarithmic mu)(logistic location scale)(nakagami m omega)(neg-binomial prob size)(non-central-beta a b ncp)(non-central-chi-square df ncp)(non-central-f df1 df2 ncp)(non-central-t df ncp)(normal mu sigma)(order dist mlen j largest)(poisson lambda)(probability dist x)returns the probability density for the distribution
(probability (laplace 1 2) 4) => 0.05578254003710745
(probability (binomial 10 0.3) [1 2 3]) => [0.1210608209999997 0.2334744405000001 0.26682793199999993]
returns the probability density for the distribution (probability (laplace 1 2) 4) => 0.05578254003710745 (probability (binomial 10 0.3) [1 2 3]) => [0.1210608209999997 0.2334744405000001 0.26682793199999993]
(random-sample dist)gives a random sample from distribution
(random-sample (laplace 1 2)) ;; 1.9528692108205805 => number?
gives a random sample from distribution (random-sample (laplace 1 2)) ;; 1.9528692108205805 => number?
(rayleigh scale)(reverse-weibull loc scale shape)(sign-rank n)(skewed-t df gamma)(spearman n)(t df)(tukey rr cc df)(uniform a b)(weibull shape scale)(wilcoxon m n)(zipf N s)cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |