Liking cljdoc? Tell your friends :D

hara.math.stats.distribution


+distributions+clj


+distributions-map+clj


ansariclj

(ansari m n)

arcsineclj

(arcsine a b)

betaclj

(beta a b)

beta-binomialclj

(beta-binomial mu sigma bd)

beta-primeclj

(beta-prime a b)

binomialclj

(binomial n p)

cauchyclj

(cauchy location scale)

chiclj

(chi df)

chi-squareclj

(chi-square df)

create-distribution-formclj

(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))
raw docstring

create-distribution-formsclj

(create-distribution-forms)
(create-distribution-forms dists)

helper for create-distributions

(create-distribution-forms) => vector?

helper for `create-distributions`

(create-distribution-forms)
=> vector?
raw docstring

create-distributionscljmacro

(create-distributions)

creates all methods for constructing distributions

(create-distributions)

creates all methods for constructing distributions

(create-distributions)
raw docstring

cumulativeclj

(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]
raw docstring

exponentialclj

(exponential scale)

extremeclj

(extreme dist mlen largest)

fclj

(f df1 df2)

fn-nameclj

(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"
raw docstring

fretchetclj

(fretchet loc scale shape)

gammaclj

(gamma scale shape)

generalized-paretoclj

(generalized-pareto loc scale shape)

geometricclj

(geometric p)

gevclj

(gev loc scale shape)

gumbelclj

(gumbel loc scale)

hyper-geometricclj

(hyper-geometric r b n)

inv-gammaclj

(inv-gamma shape scale)

inv-normalclj

(inv-normal mu sigma)

kendallclj

(kendall n)

kumaraswamyclj

(kumaraswamy a b)

laplaceclj

(laplace location scale)

levyclj

(levy mu sigma)

log-normalclj

(log-normal meanlog sdlog)

logarithmicclj

(logarithmic mu)

logisticclj

(logistic location scale)

nakagamiclj

(nakagami m omega)

neg-binomialclj

(neg-binomial prob size)

non-central-betaclj

(non-central-beta a b ncp)

non-central-chi-squareclj

(non-central-chi-square df ncp)

non-central-fclj

(non-central-f df1 df2 ncp)

non-central-tclj

(non-central-t df ncp)

normalclj

(normal mu sigma)

orderclj

(order dist mlen j largest)

poissonclj

(poisson lambda)

probabilityclj

(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]
raw docstring

random-sampleclj

(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?
raw docstring

rayleighclj

(rayleigh scale)

reverse-weibullclj

(reverse-weibull loc scale shape)

sign-rankclj

(sign-rank n)

skewed-tclj

(skewed-t df gamma)

spearmanclj

(spearman n)

tclj

(t df)

tukeyclj

(tukey rr cc df)

uniformclj

(uniform a b)

weibullclj

(weibull shape scale)

wilcoxonclj

(wilcoxon m n)

zipfclj

(zipf N s)

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close