Liking cljdoc? Tell your friends :D

kixi.stats.test


chi-squared-testclj/s

(chi-squared-test table)

Calculates the X^2 test of independence for a given contingency table. Returns a reified kixi.stats.protocols/PTestResult. See kixi.stats.core/cross-tabulate

Calculates the X^2 test of independence for a given contingency table.
Returns a reified kixi.stats.protocols/PTestResult.
See kixi.stats.core/cross-tabulate
sourceraw docstring

p-valueclj/s

source

significant?clj/s

source

simple-t-testclj/s

(simple-t-test {:keys [mu sd]} {:keys [mean n]})

Calculates the t-test of statistical significance for a sample mean. mu: the population mean sd: the population standard deviation mean: the sample mean n: the sample size Returns a reified kixi.stats.protocols/PTestResult. See also: kixi.stats.core/simple-t-test

Calculates the t-test of statistical significance for a sample mean.
mu: the population mean
sd: the population standard deviation
mean: the sample mean
n: the sample size
Returns a reified kixi.stats.protocols/PTestResult.
See also: kixi.stats.core/simple-t-test
sourceraw docstring

simple-z-testclj/s

(simple-z-test {:keys [mu sd]} {:keys [mean n]})

Calculates the z-test of statistical significance for a sample mean. mu: the population mean sd: the population standard deviation mean: the sample mean n: the sample size Returns a reified kixi.stats.protocols/PTestResult. See also: kixi.stats.core/simple-z-test

Calculates the z-test of statistical significance for a sample mean.
mu: the population mean
sd: the population standard deviation
mean: the sample mean
n: the sample size
Returns a reified kixi.stats.protocols/PTestResult.
See also: kixi.stats.core/simple-z-test
sourceraw docstring

t-testclj/s

(t-test {mean-a :mean sd-a :sd n-a :n} {mean-b :mean sd-b :sd n-b :n})

Calculates Welch's unequal variances t-test of statistical significance. Requires the mean, sd and sample size (n) of both samples. Returns a reified kixi.stats.protocols/PTestResult. See also: kixi.stats.core/t-test

Calculates Welch's unequal variances t-test of statistical significance.
Requires the mean, sd and sample size (n) of both samples.
Returns a reified kixi.stats.protocols/PTestResult.
See also: kixi.stats.core/t-test
sourceraw docstring

test-resultclj/s

(test-result statistic distribution)
(test-result statistic distribution alternate)
source

TestResultclj/s

source

z-testclj/s

(z-test {mean-x :mean sd-x :sd n-x :n} {mean-y :mean sd-y :sd n-y :n})

Calculates the z-test of statistical significance between two sample means. Requires the mean, sd and sample size (n) of both samples. Returns a reified kixi.stats.protocols/PTestResult. See also: kixi.stats.core/z-test

Calculates the z-test of statistical significance between two sample means.
Requires the mean, sd and sample size (n) of both samples.
Returns a reified kixi.stats.protocols/PTestResult.
See also: kixi.stats.core/z-test
sourceraw docstring

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

× close