annotate statistical_hypothesis_testing.xml @ 0:178b22349b79 draft default tip

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
author bgruening
date Mon, 21 Nov 2022 18:08:27 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1 <tool id="bg_statistical_hypothesis_testing" name="Statistical hypothesis testing" version="0.3">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2 <description>computes several descriptive statistics</description>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
3 <macros>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
4 <import>macros.xml</import>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
5 </macros>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
6 <expand macro="requirements" />
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
7 <command detect_errors="exit_code"><![CDATA[
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
8 python '$__tool_directory__/statistical_hypothesis_testing.py'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
9 --infile '${infile}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
10 --outfile '${outfile}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
11 --test_id '${test_methods.test_methods_opts}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
12 #if str($test_methods.test_methods_opts) == "describe" or str($test_methods.test_methods_opts) == "mode" or str($test_methods.test_methods_opts) == "normaltest" or str($test_methods.test_methods_opts) == "kurtosistest" or str($test_methods.test_methods_opts) == "skewtest" or str($test_methods.test_methods_opts) == "nanmean" or str($test_methods.test_methods_opts) == "nanmedian" or str($test_methods.test_methods_opts) == "variation" or str($test_methods.test_methods_opts) == "itemfreq" or str($test_methods.test_methods_opts) == "kurtosistest" or str($test_methods.test_methods_opts) == "skewtest" or str($test_methods.test_methods_opts) == "nanmean" or str($test_methods.test_methods_opts) == "nanmedian" or str($test_methods.test_methods_opts) == "variation" or str($test_methods.test_methods_opts) == "tiecorrect":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
13 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
14 #elif str($test_methods.test_methods_opts) == "gmean" or str($test_methods.test_methods_opts) == "hmean":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
15 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
16 --dtype "${test_methods.dtype}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
17 #elif str($test_methods.test_methods_opts) == "anderson":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
18 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
19 --dist "${test_methods.dist}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
20 #elif str($test_methods.test_methods_opts) == "binom_test":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
21 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
22 --n "${test_methods.n}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
23 --p "${test_methods.p}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
24 #elif str($test_methods.test_methods_opts) == "kurtosis":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
25 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
26 --axis "${test_methods.axis}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
27 $test_methods.fisher
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
28 $test_methods.bias
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
29 #elif str($test_methods.test_methods_opts) == "moment":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
30 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
31 --n "${test_methods.n}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
32 #elif str($test_methods.test_methods_opts) == "bayes_mvs":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
33 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
34 --alpha "${test_methods.alpha}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
35 #elif str($test_methods.test_methods_opts) == "percentileofscore":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
36 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
37 --score "${test_methods.score}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
38 --kind "${test_methods.kind}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
39 #elif str($test_methods.test_methods_opts) == "sigmaclip":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
40 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
41 --n "${test_methods.n}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
42 --m "${test_methods.m}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
43 #elif str($test_methods.test_methods_opts) == "chi2_contingency":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
44 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
45 $test_methods.correction
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
46 #if str($test_methods.lambda_).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
47 --lambda_ "${test_methods.lambda_}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
48 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
49 #elif str($test_methods.test_methods_opts) == "skew" or str($test_methods.test_methods_opts) == "nanstd" :
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
50 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
51 $test_methods.bias
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
52 #elif str($test_methods.test_methods_opts) == "rankdata":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
53 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
54 --md "${test_methods.md}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
55 #elif str($test_methods.test_methods_opts) == "sem" or str($test_methods.test_methods_opts) == "zscore" or str($test_methods.test_methods_opts) == "signaltonoise":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
56 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
57 #if str($test_methods.ddof).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
58 --ddof "${test_methods.ddof}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
59 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
60 #elif str($test_methods.test_methods_opts) == "trimboth":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
61 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
62 #if str($test_methods.proportiontocut).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
63 --proportiontocut "${test_methods.proportiontocut}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
64 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
65 #elif str($test_methods.test_methods_opts) == "trim1":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
66 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
67 #if str($test_methods.proportiontocut).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
68 --proportiontocut "${test_methods.proportiontocut}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
69 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
70 --tail "${test_methods.tail}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
71 #elif str($test_methods.test_methods_opts) == "boxcox":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
72 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
73 --alpha "${test_methods.alpha}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
74 #if str($test_methods.imbda).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
75 --imbda "${test_methods.imbda}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
76 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
77 #elif str($test_methods.test_methods_opts) == "boxcox_llf":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
78 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
79 --imbda "${test_methods.imbda}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
80 #elif str($test_methods.test_methods_opts) == "kstest":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
81 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
82 #if str($test_methods.ni).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
83 --ni "${test_methods.ni}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
84 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
85 --cdf '${test_methods.cdf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
86 --alternative '${test_methods.alternative}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
87 --mode '${test_methods.mode}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
88
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
89 #elif str($test_methods.test_methods_opts) == "boxcox_normmax":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
90 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
91 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
92 --mf '${test_methods.mf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
93 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
94 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
95 --nf '${test_methods.nf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
96 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
97 --method '${test_methods.method}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
98 #elif str($test_methods.test_methods_opts) == "tmean" or str($test_methods.test_methods_opts) == "tvar" or str($test_methods.test_methods_opts) == "tstd" or str($test_methods.test_methods_opts) == "tsem":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
99 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
100 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
101 --mf '${test_methods.mf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
102 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
103 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
104 --nf '${test_methods.nf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
105 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
106 $test_methods.inclusive1
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
107 $test_methods.inclusive2
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
108 #elif str($test_methods.test_methods_opts) == "tmin":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
109 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
110 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
111 --mf "${test_methods.mf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
112 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
113 $test_methods.inclusive
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
114 #elif str($test_methods.test_methods_opts) == "tmax":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
115 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
116 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
117 --nf "${test_methods.nf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
118 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
119 $test_methods.inclusive
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
120 #elif str($test_methods.test_methods_opts) == "histogram":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
121 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
122 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
123 --mf "${test_methods.mf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
124 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
125 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
126 --nf "${test_methods.nf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
127 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
128 --b "${test_methods.b}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
129 $test_methods.printextras
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
130 #elif str($test_methods.test_methods_opts) == "cumfreq":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
131 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
132 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
133 --mf "${test_methods.mf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
134 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
135 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
136 --nf "${test_methods.nf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
137 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
138 --b "${test_methods.b}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
139 #elif str($test_methods.test_methods_opts) == "threshold":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
140 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
141 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
142 --mf "${test_methods.mf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
143 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
144 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
145 --nf "${test_methods.nf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
146 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
147 --new "${test_methods.new}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
148 #elif str($test_methods.test_methods_opts) == "relfreq":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
149 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
150 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
151 --mf "${test_methods.mf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
152 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
153 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
154 --nf "${test_methods.nf}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
155 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
156 --b "${test_methods.b}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
157 #elif str($test_methods.test_methods_opts) == "spearmanr":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
158 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
159 #if str($test_methods.sample_two_cols).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
160 --sample_two_cols "${test_methods.sample_two_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
161 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
162 #elif str($test_methods.test_methods_opts) == "theilslopes":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
163 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
164 #if str($test_methods.sample_two_cols).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
165 --sample_two_cols "${test_methods.sample_two_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
166 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
167 --alpha "${test_methods.alpha}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
168 #elif str($test_methods.test_methods_opts) == "chisquare":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
169 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
170 #if str($test_methods.sample_two_cols).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
171 --sample_two_cols "${test_methods.sample_two_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
172 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
173 #if str($test_methods.ddof).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
174 --ddof "${test_methods.ddof}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
175 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
176 #elif str($test_methods.test_methods_opts) == "power_divergence":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
177 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
178 #if str($test_methods.sample_two_cols).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
179 --sample_two_cols "${test_methods.sample_two_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
180 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
181 #if str($test_methods.ddof).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
182 --ddof "${test_methods.ddof}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
183 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
184 #if str($test_methods.lambda_).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
185 --lambda_ "${test_methods.lambda_}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
186 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
187 #elif str($test_methods.test_methods_opts) == "combine_pvalues":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
188 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
189 #if str($test_methods.sample_two_cols).strip() and $test_methods.sample_two_cols:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
190 --sample_two_cols "${test_methods.sample_two_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
191 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
192 --med "${test_methods.med}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
193 #elif str($test_methods.test_methods_opts) == "wilcoxon":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
194 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
195 #if str($test_methods.sample_two_cols).strip() and $test_methods.sample_two_cols:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
196 --sample_two_cols "${test_methods.sample_two_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
197 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
198 --zero_method "${test_methods.zero_method}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
199 $test_methods.correction
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
200 #elif str($test_methods.test_methods_opts) == "ranksums" or str($test_methods.test_methods_opts) == "ansari" or str($test_methods.test_methods_opts) == "linregress" or str($test_methods.test_methods_opts) == "pearsonr" or str($test_methods.test_methods_opts) == "pointbiserialr" or str($test_methods.test_methods_opts) == "ks_2samp" or str($test_methods.test_methods_opts) == "ttest_1samp" or str($test_methods.test_methods_opts) == "histogram2":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
201 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
202 --sample_two_cols '${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
203 #elif str($test_methods.test_methods_opts) == "entropy":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
204 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
205 --sample_two_cols v${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
206 --base "${test_methods.base}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
207 #elif str($test_methods.test_methods_opts) == "kendalltau":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
208 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
209 --sample_two_cols '${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
210 $test_methods.initial_lexsort
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
211 #elif str($test_methods.test_methods_opts) == "kendalltau":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
212 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
213 --sample_two_cols '${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
214 $test_methods.initial_lexsort
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
215 #elif str($test_methods.test_methods_opts) == "mannwhitneyu":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
216 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
217 --sample_two_cols '${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
218 $test_methods.mwu_use_continuity
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
219 #elif str($test_methods.test_methods_opts) == "ttest_ind":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
220 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
221 --sample_two_cols '${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
222 $test_methods.equal_var
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
223 #elif str($test_methods.test_methods_opts) == "ttest_rel":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
224 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
225 --sample_two_cols '${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
226 --axis "${test_methods.axis}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
227 #elif str($test_methods.test_methods_opts) == "zmap":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
228 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
229 --sample_two_cols '${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
230 #if str($test_methods.ddof).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
231 --ddof '${test_methods.ddof}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
232 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
233 #elif str($test_methods.test_methods_opts) == "binned_statistic":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
234 --sample_one_cols '${test_methods.sample_one_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
235 --sample_two_cols '${test_methods.sample_two_cols}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
236 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
237 --mf '${test_methods.mf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
238 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
239 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
240 --nf '${test_methods.nf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
241 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
242 --statistic '${test_methods.statistic}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
243 --b '${test_methods.b}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
244 #elif str($test_methods.test_methods_opts) == "scoreatpercentile":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
245 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
246 --sample_two_cols "${test_methods.sample_two_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
247 #if str($test_methods.mf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
248 --mf '${test_methods.mf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
249 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
250 #if str($test_methods.nf).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
251 --nf '${test_methods.nf}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
252 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
253 --interpolation '${test_methods.interpolation}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
254 #elif str($test_methods.test_methods_opts) == "mood":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
255 --axis "${test_methods.axis}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
256 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
257 --sample_two_cols "${test_methods.sample_two_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
258 #elif str($test_methods.test_methods_opts) == "shapiro":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
259 --sample_one_cols "${test_methods.sample_one_cols}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
260 #elif str($test_methods.test_methods_opts) == "bartlett" or str($test_methods.test_methods_opts) == "f_oneway" or str($test_methods.test_methods_opts) == "kruskal" or str($test_methods.test_methods_opts) == "friedmanchisquare" or str($test_methods.test_methods_opts) == "obrientransform":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
261 --sample_cols "#echo ';'.join( [str($list.sample_cols) for $list in $test_methods.samples] )#"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
262 #elif str($test_methods.test_methods_opts) == "levene":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
263 --sample_cols "#echo ';'.join( [str($list.sample_cols) for $list in $test_methods.samples] )#"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
264 --center "${test_methods.center}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
265 #if str($test_methods.proportiontocut).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
266 --proportiontocut "${test_methods.proportiontocut}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
267 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
268 #elif str($test_methods.test_methods_opts) == "fligner":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
269 --sample_cols "#echo ';'.join( [str($list.sample_cols) for $list in $test_methods.samples] )#"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
270 --center "${test_methods.center}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
271 #if str($test_methods.proportiontocut).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
272 --proportiontocut "${test_methods.proportiontocut}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
273 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
274 #elif str($test_methods.test_methods_opts) == "median_test":
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
275 --sample_cols "#echo ';'.join( [str($list.sample_cols) for $list in $test_methods.samples] )#"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
276 $test_methods.correction
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
277 #if str($test_methods.lambda_).strip():
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
278 --lambda_ "${test_methods.lambda_}"
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
279 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
280 --ties '${test_methods.ties}'
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
281 #end if
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
282 ]]></command>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
283 <inputs>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
284 <param name="infile" type="data" format="tabular" label="Sample file" help="tabular file containing the observations"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
285 <conditional name="test_methods">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
286 <param name="test_methods_opts" type="select" label="Select a statistical test method">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
287 <option value="describe">Computes several descriptive statistics of the passed array</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
288 <option value="gmean">Compute the geometric mean along the specified axis</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
289 <option value="hmean">Calculates the harmonic mean along the specified axis</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
290 <option value="kurtosis">Computes the kurtosis (Fisher or Pearson) of a dataset</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
291 <option value="kurtosistest">Tests whether a dataset has normal kurtosis</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
292 <option value="mode">show the most common value in the passed array</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
293 <option value="moment">Calculates the nth moment about the mean for a sample</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
294 <option value="normaltest">Tests whether a sample differs from a normal distribution</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
295 <option value="skew">Computes the skewness of a data set.</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
296 <option value="skewtest">Tests whether the skew is different from the normal distribution.</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
297 <option value="tmean">Compute the trimmed mean</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
298 <option value="tvar">Compute the trimmed variance</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
299 <option value="tmin">Compute the trimmed minimum</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
300 <option value="tmax">Compute the trimmed maximum</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
301 <option value="tstd">Compute the trimmed sample standard deviation</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
302 <option value="tsem">Compute the trimmed standard error of the mean</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
303 <option value="nanmean">Compute the mean ignoring nans</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
304 <option value="nanstd">Compute the standard deviation ignoring nans</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
305 <option value="nanmedian">Compute the median ignoring nan values.</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
306 <option value="variation">Computes the coefficient of variation, the ratio of the biased standard deviation to the mean.</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
307 <option value="cumfreq">Returns a cumulative frequency histogram, using the histogram function</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
308 <option value="histogram2">Compute histogram using divisions in bins</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
309 <option value="histogram">Separates the range into several bins</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
310 <option value="itemfreq">Compute frequencies for each number</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
311 <option value="percentileofscore">The percentile rank of a score relative to a list of scores</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
312 <option value="scoreatpercentile">Calculate the score at a given percentile of the input sequence</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
313 <option value="relfreq">Returns a relative frequency histogram, using the histogram function</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
314 <option value="binned_statistic">Compute a binned statistic for a set of data</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
315 <option value="obrientransform">Computes the O’Brien transform on input data</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
316 <option value="signaltonoise">The signal-to-noise ratio of the input data</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
317 <option value="bayes_mvs">Bayesian confidence intervals for the mean, var, and std</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
318 <option value="sem">Calculates the standard error of the mean of the value</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
319 <option value="zmap">Calculates the relative z-scores</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
320 <option value="zscore">Calculates the z score of each value in the sample, relative to the sample mean and standard deviation</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
321 <option value="sigmaclip">Iterative sigma-clipping of array elements</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
322 <option value="threshold">Clip array to a given value</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
323 <option value="trimboth">Slices off a proportion of items from both ends of an array</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
324 <option value="trim1">Slices off a proportion of items from ONE end of the passed array distribution</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
325 <option value="f_oneway">Performs a 1-way ANOVA</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
326 <option value="pearsonr">Calculates a Pearson correlation coefficient and the p-value for testing non-correlation.</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
327 <option value="spearmanr">Calculates a Spearman rank-order correlation coefficient and the p-value to test for non-correlation</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
328 <option value="pointbiserialr">Calculates a point biserial correlation coefficient and the associated p-value</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
329 <option value="kendalltau">Calculates Kendall’s tau, a correlation measure for ordinal data</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
330 <option value="linregress">This computes a least-squares regression for two sets of measurements</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
331 <option value="theilslopes">Computes the Theil-Sen estimator for a set of points (x, y)</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
332 <option value="ttest_1samp">Calculates the T-test for the mean of ONE group of scores</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
333 <option value="ttest_ind">T-test for the means of TWO INDEPENDENT samples of scores</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
334 <option value="ttest_rel">T-test for the means of TWO RELATED samples of scores</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
335 <option value="kstest">Perform the Kolmogorov-Smirnov test for goodness of fit.</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
336 <option value="chisquare">Calculates a one-way chi square test</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
337 <option value="power_divergence">Cressie-Read power divergence statistic and goodness of fit test</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
338 <option value="ks_2samp">Computes the Kolmogorov-Smirnov statistic on 2 samples</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
339 <option value="mannwhitneyu">Computes the Mann-Whitney rank test on samples x and y</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
340 <option value="tiecorrect">Tie correction factor for ties in the Mann-Whitney U and Kruskal-Wallis H tests</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
341 <option value="rankdata">Assign ranks to data, dealing with ties appropriately</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
342 <option value="ranksums">Compute the Wilcoxon rank-sum statistic for two samples</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
343 <option value="wilcoxon">Calculate the Wilcoxon signed-rank test</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
344 <option value="kruskal">Compute the Kruskal-Wallis H-test for independent samples</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
345 <option value="friedmanchisquare">Computes the Friedman test for repeated measurements</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
346 <option value="combine_pvalues">Methods for combining the p-values of independent tests bearing upon the same hypothesis</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
347 <option value="ansari">Perform the Ansari-Bradley test for equal scale parameters</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
348 <option value="bartlett">Perform Bartlett’s test for equal variances</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
349 <option value="levene">Perform Levene test for equal variances.</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
350 <option value="shapiro">Perform the Shapiro-Wilk test for normality</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
351 <option value="anderson">Anderson-Darling test for data coming from a particular distribution</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
352 <option value="binom_test">Perform a test that the probability of success is p</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
353 <option value="fligner">Perform Fligner’s test for equal variances</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
354 <option value="median_test">Mood’s median test</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
355 <option value="mood">Perform Mood’s test for equal scale parameters</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
356 <option value="boxcox">Return a positive dataset transformed by a Box-Cox power transformation</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
357 <option value="boxcox_normmax">Compute optimal Box-Cox transform parameter for input data</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
358 <option value="boxcox_llf">The boxcox log-likelihood function</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
359 <option value="entropy">Calculate the entropy of a distribution for given probability values</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
360 <option value="chi2_contingency">Chi-square test of independence of variables in a contingency table</option>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
361 </param>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
362 <when value="itemfreq">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
363 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
364 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
365 <when value="sem">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
366 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
367 <expand macro="macro_ddof"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
368 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
369 <when value="zscore">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
370 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
371 <expand macro="macro_ddof"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
372 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
373 <when value="relfreq">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
374 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
375 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
376 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
377 <expand macro="macro_b"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
378 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
379 <when value="signaltonoise">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
380 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
381 <expand macro="macro_ddof"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
382 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
383 <when value="bayes_mvs">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
384 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
385 <expand macro="macro_alpha"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
386 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
387 <when value="threshold">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
388 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
389 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
390 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
391 <expand macro="macro_new"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
392 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
393 <when value="trimboth">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
394 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
395 <expand macro="macro_proportiontocut"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
396 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
397 <when value="trim1">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
398 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
399 <expand macro="macro_proportiontocut"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
400 <expand macro="macro_tail"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
401 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
402 <when value="percentileofscore">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
403 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
404 <expand macro="macro_score"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
405 <expand macro="macro_kind"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
406 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
407 <when value="normaltest">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
408 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
409 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
410 <when value="kurtosistest">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
411 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
412 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
413 <when value="describe">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
414 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
415 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
416 <when value="mode">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
417 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
418 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
419 <when value="normaltest">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
420 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
421 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
422 <when value="kurtosistest">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
423 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
424 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
425 <when value="skewtest">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
426 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
427 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
428 <when value="nanmean">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
429 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
430 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
431 <when value="nanmedian">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
432 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
433 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
434 <when value="variation">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
435 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
436 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
437 <when value="tiecorrect">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
438 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
439 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
440 <when value="gmean">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
441 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
442 <expand macro="macro_dtype"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
443 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
444 <when value="hmean">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
445 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
446 <expand macro="macro_dtype"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
447 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
448 <when value="sigmaclip">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
449 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
450 <expand macro="macro_m"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
451 <expand macro="macro_n_in"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
452 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
453 <when value="kurtosis">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
454 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
455 <expand macro="macro_axis"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
456 <expand macro="macro_fisher"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
457 <expand macro="macro_bias"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
458 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
459 <when value="chi2_contingency">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
460 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
461 <expand macro="macro_correction"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
462 <expand macro="macro_lambda_"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
463 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
464 <when value="binom_test">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
465 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
466 <expand macro="macro_n_in"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
467 <expand macro="macro_p"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
468 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
469 <when value="moment">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
470 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
471 <expand macro="macro_n_moment"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
472 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
473 <when value="skew">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
474 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
475 <expand macro="macro_bias"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
476 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
477 <when value="tmean">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
478 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
479 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
480 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
481 <expand macro="macro_inclusive1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
482 <expand macro="macro_inclusive2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
483 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
484 <when value="tmin">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
485 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
486 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
487 <expand macro="macro_inclusive"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
488 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
489 <when value="tmax">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
490 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
491 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
492 <expand macro="macro_inclusive"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
493 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
494 <when value="tvar">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
495 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
496 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
497 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
498 <expand macro="macro_inclusive1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
499 <expand macro="macro_inclusive2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
500 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
501 <when value="tstd">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
502 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
503 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
504 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
505 <expand macro="macro_inclusive1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
506 <expand macro="macro_inclusive2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
507 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
508 <when value="tsem">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
509 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
510 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
511 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
512 <expand macro="macro_inclusive1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
513 <expand macro="macro_inclusive2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
514 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
515 <when value="nanstd">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
516 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
517 <expand macro="macro_bias"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
518 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
519 <when value="histogram">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
520 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
521 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
522 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
523 <expand macro="macro_b"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
524 <expand macro="macro_printextras"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
525
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
526 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
527 <when value="cumfreq">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
528 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
529 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
530 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
531 <expand macro="macro_b"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
532 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
533 <when value="boxcox">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
534 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
535 <expand macro="macro_imbda"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
536 <expand macro="macro_alpha"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
537 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
538 <when value="boxcox_llf">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
539 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
540 <expand macro="macro_imbda"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
541 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
542 <when value="boxcox_normmax">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
543 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
544 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
545 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
546 <expand macro="macro_method"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
547 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
548 <when value="anderson">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
549 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
550 <expand macro="macro_dist"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
551 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
552 <when value="rankdata">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
553 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
554 <expand macro="macro_md"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
555 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
556 <when value="kstest">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
557 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
558 <expand macro="macro_cdf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
559 <expand macro="macro_ni"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
560 <expand macro="macro_alternative"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
561 <expand macro="macro_mode"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
562 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
563
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
564 <when value="spearmanr">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
565 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
566 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
567 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
568 <when value="ranksums">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
569 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
570 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
571 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
572 <when value="ansari">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
573 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
574 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
575 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
576 <when value="linregress">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
577 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
578 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
579 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
580 <when value="histogram2">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
581 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
582 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
583 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
584 <when value="pearsonr">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
585 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
586 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
587 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
588 <when value="pointbiserialr">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
589 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
590 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
591 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
592 <when value="ttest_1samp">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
593 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
594 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
595 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
596 <when value="ks_2samp">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
597 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
598 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
599 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
600 <when value="kendalltau">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
601 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
602 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
603 <expand macro="macro_initial_lexsort"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
604
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
605 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
606 <when value="mannwhitneyu">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
607 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
608 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
609 <expand macro="macro_mwu_use_continuity"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
610 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
611 <when value="ttest_ind">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
612 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
613 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
614 <expand macro="macro_equal_var"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
615 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
616 <when value="ttest_rel">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
617 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
618 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
619 <expand macro="macro_axis"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
620 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
621 <when value="entropy">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
622 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
623 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
624 <expand macro="macro_base"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
625 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
626 <when value="theilslopes">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
627 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
628 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
629 <expand macro="macro_alpha"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
630 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
631 <when value="zmap">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
632 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
633 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
634 <expand macro="macro_ddof"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
635 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
636 <when value="chisquare">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
637 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
638 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
639 <expand macro="macro_ddof"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
640 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
641 <when value="power_divergence">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
642 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
643 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
644 <expand macro="macro_lambda_"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
645 <expand macro="macro_ddof"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
646 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
647 <when value="combine_pvalues">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
648 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
649 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
650 <expand macro="macro_med"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
651 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
652 <when value="mood">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
653 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
654 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
655 <expand macro="macro_axis"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
656 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
657 <when value="shapiro">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
658 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
659 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
660 <when value="wilcoxon">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
661 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
662 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
663 <expand macro="macro_zero_method"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
664 <expand macro="macro_correction"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
665 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
666 <when value="scoreatpercentile">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
667 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
668 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
669 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
670 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
671 <expand macro="macro_interpolation"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
672 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
673 <when value="binned_statistic">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
674 <expand macro="macro_sample_one_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
675 <expand macro="macro_sample_two_cols"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
676 <expand macro="macro_mf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
677 <expand macro="macro_nf"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
678 <expand macro="macro_b"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
679 <expand macro="macro_statistic"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
680 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
681 <when value="fligner">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
682 <expand macro="macro_proportiontocut"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
683 <expand macro="macro_center"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
684 <expand macro="macro_sample_cols_min2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
685 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
686 <when value="f_oneway">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
687 <expand macro="macro_sample_cols_min2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
688 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
689 <when value="kruskal">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
690 <expand macro="macro_sample_cols_min2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
691 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
692 <when value="friedmanchisquare">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
693 <expand macro="macro_sample_cols_min3"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
694 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
695 <when value="bartlett">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
696 <expand macro="macro_sample_cols_min2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
697 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
698 <when value="levene">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
699 <expand macro="macro_proportiontocut"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
700 <expand macro="macro_center"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
701 <expand macro="macro_sample_cols_min2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
702 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
703 <when value="obrientransform">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
704 <expand macro="macro_sample_cols_min2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
705 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
706 <when value="median_test">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
707 <expand macro="macro_ties"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
708 <expand macro="macro_correction"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
709 <expand macro="macro_lambda_"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
710 <expand macro="macro_sample_cols_min2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
711 </when>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
712 </conditional>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
713 </inputs>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
714 <outputs>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
715 <data format="tabular" name="outfile" label="${tool.name} on ${on_string}" />
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
716 </outputs>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
717 <tests>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
718 <!-- Test 01 -->
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
719 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
720 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
721 <output name="outfile" file="boxcox_normmax2.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
722 <param name="sample_one_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
723 <param name="test_methods_opts" value="boxcox_normmax"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
724 <param name="method" value="pearsonr"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
725 <param name="mf" value="-2.0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
726 <param name="nf" value="2.0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
727 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
728 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
729 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
730 <output name="outfile" file="normaltest.tabular" lines_diff="4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
731 <param name="sample_one_cols" value="1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
732 <param name="test_methods_opts" value="normaltest"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
733 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
734 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
735 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
736 <output name="outfile" file="tmin.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
737 <param name="sample_one_cols" value="1,2,3,4,5,6"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
738 <param name="test_methods_opts" value="tmin"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
739 <param name="mf" value="10.0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
740 <param name="inclusive" value="True"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
741 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
742 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
743 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
744 <output name="outfile" file="shapiro2.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
745 <param name="sample_one_cols" value="1,2,3,4,8,9"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
746 <param name="test_methods_opts" value="shapiro"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
747 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
748 <!-- Test 05 -->
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
749 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
750 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
751 <output name="outfile" file="obrientransform.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
752 <repeat name="samples">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
753 <param name="sample_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
754 </repeat>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
755 <repeat name="samples">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
756 <param name="sample_cols" value="5,6,7,8"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
757 </repeat>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
758 <param name="test_methods_opts" value="obrientransform"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
759 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
760 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
761 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
762 <output name="outfile" file="median_test_result1.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
763 <repeat name="samples">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
764 <param name="sample_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
765 </repeat>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
766 <repeat name="samples">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
767 <param name="sample_cols" value="5,6,7,8"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
768 </repeat>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
769 <repeat name="samples">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
770 <param name="sample_cols" value="9,10,11,12"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
771 </repeat>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
772 <param name="test_methods_opts" value="median_test"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
773 <param name="ties" value="above"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
774 <param name="correction" value="True"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
775 <param name="lambda_" value="1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
776 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
777 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
778 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
779 <output name="outfile" file="wilcoxon_result1.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
780 <param name="sample_one_cols" value="1,2,3,4,5,6,7,8,9,10"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
781 <param name="sample_two_cols" value="11,12,13,14,15,16,17,18,19,20"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
782 <param name="test_methods_opts" value="wilcoxon"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
783 <param name="zero_method" value="pratt"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
784 <param name="correction" value="False"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
785 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
786 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
787 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
788 <output name="outfile" file="percentileofscore1.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
789 <param name="sample_one_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
790 <param name="sample_two_cols" value="5,6,7,8"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
791 <param name="test_methods_opts" value="percentileofscore"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
792 <param name="score" value="1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
793 <param name="kind" value="rank"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
794 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
795 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
796 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
797 <output name="outfile" file="percentileofscore2.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
798 <param name="sample_one_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
799 <param name="sample_two_cols" value="5,6,7,8"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
800 <param name="test_methods_opts" value="percentileofscore"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
801 <param name="score" value="2"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
802 <param name="kind" value="mean"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
803 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
804 <!-- Test 10 -->
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
805 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
806 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
807 <output name="outfile" file="trim1.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
808 <param name="sample_one_cols" value="1,2,3,4,5,6"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
809 <param name="test_methods_opts" value="trim1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
810 <param name="tail" value="left"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
811 <param name="proportiontocut" value="1.0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
812 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
813 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
814 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
815 <output name="outfile" file="scoreatpercentile.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
816 <param name="sample_one_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
817 <param name="sample_two_cols" value="11,12,13,14"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
818 <param name="test_methods_opts" value="scoreatpercentile"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
819 <param name="mf" value="5.0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
820 <param name="nf" value="50.0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
821 <param name="interpolation" value="lower"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
822 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
823 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
824 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
825 <output name="outfile" file="anderson.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
826 <param name="sample_one_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
827 <param name="test_methods_opts" value="anderson"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
828 <param name="dist" value="expon"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
829 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
830 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
831 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
832 <output name="outfile" file="boxcox_normmax.tabular" lines_diff="14"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
833 <param name="sample_one_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
834 <param name="test_methods_opts" value="boxcox_normmax"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
835 <param name="method" value="mle"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
836 <param name="mf" value="-3.0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
837 <param name="nf" value="3.0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
838 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
839 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
840 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
841 <output name="outfile" file="f_oneway.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
842 <repeat name="samples">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
843 <param name="sample_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
844 </repeat>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
845 <repeat name="samples">
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
846 <param name="sample_cols" value="5,6,7,8"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
847 </repeat>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
848 <param name="test_methods_opts" value="f_oneway"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
849 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
850 <!-- Test 15 -->
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
851 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
852 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
853 <output name="outfile" file="shapiro.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
854 <param name="sample_one_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
855 <param name="test_methods_opts" value="shapiro"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
856 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
857 <!--
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
858 Fail with the following error:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
859 ValueError: For each axis slice, the sum of the observed frequencies must agree
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
860 with the sum of the expected frequencies to a relative tolerance of 1e-08, but
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
861 the percent differences are: 0.08823529411764706
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
862 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
863 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
864 <output name="outfile" file="power_divergence.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
865 <param name="sample_one_cols" value="1,2,3,4"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
866 <param name="sample_two_cols" value="5,6,7,8"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
867 <param name="test_methods_opts" value="power_divergence"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
868 <param name="ddof" value="1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
869 <param name="lambda_" value="1"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
870 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
871 -->
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
872 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
873 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
874 <output name="outfile" file="itemfreq.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
875 <param name="sample_one_cols" value="1,2,3,4,5,6,7,8,9,10"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
876 <param name="test_methods_opts" value="itemfreq"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
877 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
878 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
879 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
880 <output name="outfile" file="trimboth.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
881 <param name="sample_one_cols" value="1,2,3,4,5,6,7,8,9,10"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
882 <param name="proportiontocut" value="0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
883 <param name="test_methods_opts" value="trimboth"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
884 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
885 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
886 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
887 <output name="outfile" file="tmean.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
888 <param name="sample_one_cols" value="1,2,3,4,5,6"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
889 <param name="test_methods_opts" value="tmean"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
890 <param name="mf" value="0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
891 <param name="nf" value="50"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
892 <param name="inclusive1" value="True"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
893 <param name="inclusive2" value="True"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
894 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
895 <!-- Test 20 -->
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
896 <test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
897 <param name="infile" value="input.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
898 <output name="outfile" file="tvar.tabular"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
899 <param name="sample_one_cols" value="1,2,3,4,5,6"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
900 <param name="test_methods_opts" value="tvar"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
901 <param name="mf" value="0"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
902 <param name="nf" value="50"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
903 <param name="inclusive1" value="True"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
904 <param name="inclusive2" value="True"/>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
905 </test>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
906 </tests>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
907 <help>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
908
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
909 .. class:: warningmark
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
910
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
911
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
912 Computes a large number of probability distributions as well as a statistical functions of any kind.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
913 For more informations have a look at the `SciPy site`_.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
914
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
915 .. _`SciPy site`: http://docs.scipy.org/doc/scipy/reference/stats.html
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
916
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
917
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
918 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
919
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
920 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
921 Describe
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
922 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
923
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
924 Computes several descriptive statistics for samples x
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
925
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
926 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
927
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
928 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
929
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
930 size of the data : int
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
931
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
932 length of data along axis
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
933
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
934 (min, max): tuple of ndarrays or floats
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
935
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
936 minimum and maximum value of data array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
937
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
938 arithmetic mean : ndarray or float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
939
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
940 mean of data along axis
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
941
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
942 unbiased variance : ndarray or float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
943
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
944 variance of the data along axis, denominator is number of observations minus one.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
945
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
946 biased skewness : ndarray or float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
947
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
948 skewness, based on moment calculations with denominator equal to the number of observations, i.e. no degrees of freedom correction
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
949
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
950 biased kurtosis : ndarray or float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
951
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
952 kurtosis (Fisher), the kurtosis is normalized so that it is zero for the normal distribution. No degrees of freedom or bias correction is used.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
953
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
954 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
955
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
956 describe([4,417,8,3]) the result is (4,(3.0, 417.0),108.0,42440.6666667 ,1.15432044278, -0.666961688151)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
957
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
958
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
959 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
960 Gmean
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
961 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
962
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
963 Compute the geometric mean along the specified axis.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
964
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
965 Returns the geometric average of the array elements. That is: n-th root of (x1 * x2 * ... * xn)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
966
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
967 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
968
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
969 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
970
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
971 gmean : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
972
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
973 see dtype parameter above
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
974
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
975 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
976
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
977 stats.gmean([4,17,8,3],dtype='float64') the result is (6.35594365562)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
978
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
979 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
980 Hmean
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
981 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
982
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
983 py.stats.hmean(a, axis=0, dtype=None)[source]
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
984 Calculates the harmonic mean along the specified axis.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
985
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
986 That is: n / (1/x1 + 1/x2 + ... + 1/xn)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
987
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
988 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
989
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
990 hmean : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
991
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
992 see dtype parameter above
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
993
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
994
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
995 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
996
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
997 stats.hmean([4,17,8,3],dtype='float64')the result is (5.21405750799)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
998
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
999 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1000 Kurtosis
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1001 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1002
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1003 Computes the kurtosis (Fisher or Pearson) of a dataset.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1004
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1005 Kurtosis is the fourth central moment divided by the square of the variance. If Fisher’s definition is used, then 3.0 is subtracted from the result to give 0.0 for a normal distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1006
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1007 If bias is False then the kurtosis is calculated using k statistics to eliminate bias coming from biased moment estimators
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1008
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1009 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1010
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1011 Computes the kurtosis for samples x .
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1012
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1013 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1014
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1015 kurtosis : array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1016
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1017 The kurtosis of values along an axis. If all values are equal, return -3 for Fisher’s definition and 0 for Pearson’s definition.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1018
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1019 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1020
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1021 kurtosis([4,417,8,3],0,true,true) the result is (-0.666961688151)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1022
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1023 =============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1024 Kurtosis Test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1025 =============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1026
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1027 Tests whether a dataset has normal kurtosis
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1028
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1029 This function tests the null hypothesis that the kurtosis of the population from which the sample was drawn is that of the normal distribution: kurtosis = 3(n-1)/(n+1).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1030
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1031 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1032
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1033 Computes the Z-value and p-value about samples x.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1034
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1035 kurtosistest only valid for n>=20.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1036
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1037 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1038
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1039 z-score : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1040
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1041 The computed z-score for this test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1042
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1043 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1044
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1045 The 2-sided p-value for the hypothesis test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1046
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1047
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1048 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1049
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1050 kurtosistest([4,17,8,3,30,45,5,3,4,17,8,3,30,45,5,3,4,17,8,3,30,45,5,3]) the result is (0.29775013081425117, 0.7658938788569033)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1051
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1052 ====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1053 Mode
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1054 ====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1055
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1056 Returns an array of the modal value in the passed array.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1057
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1058 If there is more than one such value, only the first is returned. The bin-count for the modal bins is also returned.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1059
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1060 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1061
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1062 Computes the most common value for samples x .
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1063
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1064 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1065
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1066 vals : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1067
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1068 Array of modal values.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1069
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1070 counts : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1071
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1072 Array of counts for each mode.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1073
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1074
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1075 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1076
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1077 mode([4,417,8,3]) the result is ([ 3.], [ 1.])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1078
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1079 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1080 Moment
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1081 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1082
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1083 Calculates the nth moment about the mean for a sample.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1084
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1085 Generally used to calculate coefficients of skewness and kurtosis.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1086
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1087 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1088
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1089 Computes the nth moment about the mean for samples x .
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1090
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1091 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1092
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1093 n-th central moment : ndarray or float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1094
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1095 The appropriate moment along the given axis or over all values if axis is None. The denominator for the moment calculation is the number of observations, no degrees of freedom correction is done.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1096
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1097
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1098 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1099
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1100 mode([4,417,8,3],moment=2) the result is (31830.5)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1101
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1102
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1103 ===========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1104 Normal Test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1105 ===========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1106
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1107 Tests whether a sample differs from a normal distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1108
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1109 This function tests the null hypothesis that a sample comes from a normal distribution. It is based on D’Agostino and Pearson’s test that combines skew and kurtosis to produce an omnibus test of normality.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1110
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1111 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1112
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1113 Computes the k2 and p-value for samples x.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1114
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1115 skewtest is not valid with less than 8 samples.kurtosistest only valid for n>=20.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1116
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1117 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1118
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1119 k2 : float or array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1120
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1121 s^2 + k^2, where s is the z-score returned by skewtest and k is the z-score returned by kurtosistest.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1122
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1123 p-value : float or array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1124
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1125 A 2-sided chi squared probability for the hypothesis test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1126
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1127
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1128 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1129
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1130 normaltest([4,17,8,3,30,45,5,3,4,17,8,3,30,45,5,3,4,17,8,3,30,45,5,3]) the result is (5.8877986151838, 0.052659990380181286)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1131
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1132 ====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1133 Skew
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1134 ====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1135
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1136 Computes the skewness of a data set.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1137
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1138 For normally distributed data, the skewness should be about 0. A skewness value > 0 means that there is more weight in the left tail of the distribution. The function skewtest can be used to determine if the skewness value is close enough to 0, statistically speaking.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1139
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1140 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1141
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1142 Computes the skewness from samples x.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1143
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1144
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1145 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1146
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1147 skewness : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1148
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1149 The skewness of values along an axis, returning 0 where all values are equal.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1150
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1151
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1152 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1153
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1154 kurtosistest([4,417,8,3]) the result is (1.1543204427775307)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1155
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1156
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1157 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1158 Skew Test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1159 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1160
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1161 Tests whether the skew is different from the normal distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1162
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1163 This function tests the null hypothesis that the skewness of the population that the sample was drawn from is the same as that of a corresponding normal distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1164
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1165 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1166
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1167 Computes the z-value and p-value from samples x.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1168
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1169 skewtest is not valid with less than 8 samples
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1170
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1171 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1172
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1173 z-score : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1174
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1175 The computed z-score for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1176
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1177 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1178
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1179 a 2-sided p-value for the hypothesis test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1180
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1181 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1182
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1183 skewtest([4,17,8,3,30,45,5,3,4,17,8,3,30,45,5,3,4,17,8,3,30,45,5,3]) the result is (2.40814108282,0.0160339834731)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1184
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1185 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1186 tmean
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1187 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1188
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1189 Compute the trimmed mean.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1190
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1191 This function finds the arithmetic mean of given values, ignoring values outside the given limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1192
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1193 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1194
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1195 Computes the mean of samples x,considering the lower and higher limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1196
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1197 Values in the input array less than the lower limit or greater than the upper limit will be ignored
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1198
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1199 for inclusive,These flags determine whether values exactly equal to the lower or upper limits are included. The default value is (True, True)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1200
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1201 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1202
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1203 tmean : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1204
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1205 The computed mean for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1206
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1207
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1208 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1209
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1210 tmean([4,17,8,3],(0,20),(true,true)) the result is (8.0)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1211
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1212 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1213 tvar
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1214 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1215
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1216 Compute the trimmed variance
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1217
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1218 This function computes the sample variance of an array of values, while ignoring values which are outside of given limits
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1219
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1220 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1221
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1222 Computes the variance of samples x,considering the lower and higher limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1223
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1224 Values in the input array less than the lower limit or greater than the upper limit will be ignored
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1225
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1226 for inclusive,These flags determine whether values exactly equal to the lower or upper limits are included. The default value is (True, True)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1227
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1228 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1229
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1230 tvar : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1231
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1232 The computed variance for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1233
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1234
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1235 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1236
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1237 tvar([4,17,8,3],(0,99999),(true,true)) the result is (40.6666666667)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1238
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1239 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1240 tmin
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1241 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1242
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1243 Compute the trimmed minimum.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1244
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1245 This function finds the arithmetic minimum of given values, ignoring values outside the given limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1246
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1247 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1248
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1249 Compute the trimmed minimum
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1250
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1251 This function finds the miminum value of an array a along the specified axis, but only considering values greater than a specified lower limit.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1252
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1253 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1254
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1255 tmin : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1256
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1257 The computed min for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1258
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1259
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1260 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1261
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1262 stats.tmin([4,17,8,3],2,0,'true') the result is (3.0)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1263
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1264 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1265 tmax
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1266 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1267
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1268 Compute the trimmed maximum.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1269
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1270 This function finds the arithmetic maximum of given values, ignoring values outside the given limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1271
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1272 This function computes the maximum value of an array along a given axis, while ignoring values larger than a specified upper limit.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1273
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1274 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1275
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1276 tmax : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1277
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1278 The computed max for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1279
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1280
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1281 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1282
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1283 stats.tmax([4,17,8,3],50,0,'true') the result is (17.0)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1284
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1285 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1286 tstd
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1287 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1288
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1289 Compute the trimmed sample standard deviation
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1290
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1291 This function finds the sample standard deviation of given values, ignoring values outside the given limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1292
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1293 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1294
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1295 Computes the deviation of samples x,considering the lower and higher limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1296
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1297 Values in the input array less than the lower limit or greater than the upper limit will be ignored
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1298
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1299 for inclusive,These flags determine whether values exactly equal to the lower or upper limits are included. The default value is (True, True)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1300
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1301 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1302
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1303 tstd : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1304
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1305 The computed deviation for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1306
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1307
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1308 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1309
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1310 tstd([4,17,8,3],(0,99999),(true,true)) the result is (6.37704215657)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1311
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1312
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1313 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1314 tsem
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1315 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1316
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1317 Compute the trimmed standard error of the mean.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1318
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1319 This function finds the standard error of the mean for given values, ignoring values outside the given limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1320
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1321 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1322
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1323 Computes the standard error of mean for samples x,considering the lower and higher limits.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1324
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1325 Values in the input array less than the lower limit or greater than the upper limit will be ignored
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1326
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1327 for inclusive,These flags determine whether values exactly equal to the lower or upper limits are included. The default value is (True, True)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1328
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1329 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1330
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1331 tsem : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1332
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1333 The computed the standard error of mean for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1334
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1335
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1336 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1337
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1338 tsem([4,17,8,3],(0,99999),(true,true)) the result is (3.18852107828)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1339
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1340 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1341 nanmean
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1342 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1343
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1344 Compute the mean over the given axis ignoring nans
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1345
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1346 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1347
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1348 Computes the mean for samples x without considering nans
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1349
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1350 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1351
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1352 m : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1353
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1354 The computed the mean for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1355
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1356
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1357 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1358
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1359 tsem([4,17,8,3]) the result is (8.0)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1360
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1361 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1362 nanstd
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1363 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1364
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1365 Compute the standard deviation over the given axis, ignoring nans.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1366
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1367 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1368
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1369 Computes the deviation for samples x without considering nans
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1370
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1371 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1372
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1373 s : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1374
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1375 The computed the standard deviation for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1376
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1377
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1378 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1379
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1380 nanstd([4,17,8,3],0,'false') the result is (5.52268050859)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1381
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1382
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1383 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1384 nanmedian
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1385 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1386
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1387 Computes the median for samples x without considering nans
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1388
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1389 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1390
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1391 m : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1392
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1393 The computed the median for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1394
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1395
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1396 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1397
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1398 nanmedian([4,17,8,3]) the result is (6.0)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1399
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1400
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1401 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1402 variation
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1403 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1404
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1405 Computes the coefficient of variation, the ratio of the biased standard deviation to the mean for samples x
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1406
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1407 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1408
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1409 ratio: float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1410
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1411 The ratio of the biased standard deviation to the mean for this test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1412
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1413
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1414 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1415
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1416 variation([4,17,8,3]) the result is (0.690335063574)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1417
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1418 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1419 cumfreq
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1420 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1421
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1422 Returns a cumulative frequency histogram, using the histogram function.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1423
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1424 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1425
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1426 cumfreq : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1427
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1428 Binned values of cumulative frequency.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1429
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1430 lowerreallimit : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1431
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1432 Lower real limit
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1433
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1434 binsize : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1435
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1436 Width of each bin.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1437
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1438 extrapoints : int
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1439
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1440 Extra points.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1441
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1442
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1443 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1444
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1445 cumfreq([4,17,8,3],defaultreallimits=(2.0,3.5)) the result is ([ 0. 0. 0. 0. 0. 0. 1. 1. 1. 1.],2.0,0.15,3)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1446
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1447 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1448 histogram2
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1449 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1450
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1451 Compute histogram using divisions in bins.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1452
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1453 Count the number of times values from array a fall into numerical ranges defined by bins.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1454
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1455 samples should at least have two numbers.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1456
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1457 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1458
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1459 histogram2 : ndarray of rank 1
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1460
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1461 Each value represents the occurrences for a given bin (range) of values.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1462
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1463
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1464 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1465
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1466 stats.histogram2([4,17,8,3], [30,45,5,3]) the result is (array([ 0, -2, -2, 4]))
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1467
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1468 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1469 histogram
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1470 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1471
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1472 Separates the range into several bins and returns the number of instances in each bin
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1473
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1474 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1475
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1476 histogram : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1477
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1478 Number of points (or sum of weights) in each bin.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1479
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1480 low_range : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1481
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1482 Lowest value of histogram, the lower limit of the first bin.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1483
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1484 binsize : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1485
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1486 The size of the bins (all bins have the same size).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1487
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1488 extrapoints : int
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1489
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1490 The number of points outside the range of the histogram.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1491
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1492
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1493 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1494
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1495 histogram([4,17,8,3],defaultlimits=(2.0,3.4)) the result is ([ 0. 0. 0. 0. 0. 0. 0. 1. 0. 0.],2.0,0.14,3)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1496
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1497
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1498 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1499 itemfreq
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1500 ============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1501
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1502 Computes the frequencies for numbers
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1503
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1504 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1505
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1506 temfreq : (K, 2) ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1507 A 2-D frequency table. Column 1 contains sorted, unique values from a, column 2 contains their respective counts.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1508
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1509
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1510 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1511
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1512 variation([4,17,8,3]) the result is array([[ 3, 1], [ 4, 1],[ 8, 1],[17, 1]])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1513
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1514 ===
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1515 Sem
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1516 ===
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1517
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1518 Calculates the standard error of the mean (or standard error of measurement) of the values in the input array.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1519
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1520
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1521 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1522
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1523 s : ndarray or float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1524 The standard error of the mean in the sample(s), along the input axis.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1525
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1526
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1527 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1528
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1529 variation([4,17,8,3],ddof=1) the result is(3.18852107828)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1530
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1531 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1532 Z Map
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1533 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1534
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1535 Calculates the relative z-scores.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1536
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1537 Returns an array of z-scores, i.e., scores that are standardized to zero mean and unit variance, where mean and variance are calculated from the comparison array.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1538
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1539
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1540 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1541
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1542 zscore : array_like
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1543
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1544 Z-scores, in the same shape as scores.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1545
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1546 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1547
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1548 stats.zmap([4,17,8,3],[30,45,5,3],ddof=1)the result is[-0.82496302 -0.18469321 -0.62795692 -0.87421454]
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1549
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1550 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1551 Z Score
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1552 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1553
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1554 Calculates the z score of each value in the sample, relative to the sample mean and standard deviation
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1555
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1556
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1557 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1558
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1559 zscore : array_like
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1560 The z-scores, standardized by mean and standard deviation of input array a.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1561
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1562
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1563 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1564
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1565 variation([4,17,8,3],ddof=0) the result is ([-0.72428597 1.62964343 0. -0.90535746])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1566
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1567 ===============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1568 Signal to noise
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1569 ===============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1570
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1571 The signal-to-noise ratio of the input data.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1572
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1573 Returns the signal-to-noise ratio of a, here defined as the mean divided by the standard deviation.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1574
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1575
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1576 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1577
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1578 s2n : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1579 The mean to standard deviation ratio(s) along axis, or 0 where the standard deviation is 0.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1580
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1581
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1582 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1583
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1584 variation([4,17,8,3],ddof=0) the result is (1.44857193668)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1585
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1586 ===================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1587 Percentile of score
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1588 ===================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1589
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1590 The percentile rank of a score relative to a list of scores.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1591
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1592 A percentileofscore of, for example, 80% means that 80% of the scores in a are below the given score. In the case of gaps or ties, the exact definition depends on the optional keyword, kind.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1593
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1594 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1595
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1596 pcos : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1597 Percentile-position of score (0-100) relative to a.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1598
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1599
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1600 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1601
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1602 percentileofscore([4,17,8,3],score=3,kind='rank') the result is(25.0)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1603
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1604 ===================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1605 Score at percentile
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1606 ===================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1607
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1608 Calculate the score at a given percentile of the input sequence.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1609
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1610 For example, the score at per=50 is the median. If the desired quantile lies between two data points, we interpolate between them, according to the value of interpolation. If the parameter limit is provided, it should be a tuple (lower, upper) of two values.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1611
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1612 The second simple should be in range [0,100].
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1613
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1614 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1615
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1616 score : float or ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1617 Score at percentile(s).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1618
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1619
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1620 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1621
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1622 stats.scoreatpercentile([4,17,8,3],[8,3],(0,100),'fraction') the result is array([ 3.24, 3.09])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1623
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1624 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1625 relfreq
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1626 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1627
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1628 Returns a relative frequency histogram, using the histogram function
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1629
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1630 numbins are the number of bins to use for the histogram.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1631
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1632 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1633
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1634 relfreq : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1635
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1636 Binned values of relative frequency.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1637
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1638 lowerreallimit : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1639
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1640 Lower real limit
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1641
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1642 binsize : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1643
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1644 Width of each bin.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1645
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1646 extrapoints : int
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1647
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1648 Extra points.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1649
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1650
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1651 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1652
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1653 stats.relfreq([4,17,8,3],10,(0,100)) the result is (array([ 0.75, 0.25, 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 , 0.0 ]), 0, 10.0, 0)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1654
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1655 ================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1656 Binned statistic
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1657 ================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1658
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1659 Compute a binned statistic for a set of data.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1660
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1661 This is a generalization of a histogram function. A histogram divides the space into bins, and returns the count of the number of points in each bin. This function allows the computation of the sum, mean, median, or other statistic of the values within each bin.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1662
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1663 Y must be the same shape as X
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1664
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1665 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1666
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1667 statistic : array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1668
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1669 The values of the selected statistic in each bin.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1670
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1671 bin_edges : array of dtype float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1672
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1673 Return the bin edges (length(statistic)+1).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1674
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1675 binnumber : 1-D ndarray of ints
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1676
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1677 This assigns to each observation an integer that represents the bin in which this observation falls. Array has the same length as values.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1678
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1679
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1680 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1681
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1682 stats.binned_statistic([4,17,8,3],[30,45,5,3],'sum',10,(0,100)) the result is ([ 38. 45. 0. 0. 0. 0. 0. 0. 0. 0.],[ 0. 10. 20. 30. 40. 50. 60. 70. 80. 90. 100.],[1 2 1 1])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1683
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1684 ================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1685 obrientransform
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1686 ================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1687
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1688 Computes the O’Brien transform on input data (any number of arrays).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1689
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1690 Used to test for homogeneity of variance prior to running one-way stats.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1691
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1692 It has to have at least two samples.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1693
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1694 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1695
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1696 obrientransform : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1697
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1698 Transformed data for use in an ANOVA. The first dimension of the result corresponds to the sequence of transformed arrays. If the arrays given are all 1-D of the same length, the return value is a 2-D array; otherwise it is a 1-D array of type object, with each element being an ndarray.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1699
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1700
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1701 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1702
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1703 stats.obrientransformcenter([4,17,8,3], [30,45,5,3]) the result is (array([[ 16.5 , 124.83333333, -10.16666667, 31.5 ],[ 39.54166667, 877.04166667, 310.375 , 422.04166667]]))
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1704
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1705 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1706 bayes mvs
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1707 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1708
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1709 Bayesian confidence intervals for the mean, var, and std.alpha should be larger than 0,smaller than 1.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1710
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1711
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1712 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1713
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1714 mean_cntr, var_cntr, std_cntr : tuple
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1715
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1716 The three results are for the mean, variance and standard deviation, respectively. Each result is a tuple of the form:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1717
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1718 (center, (lower, upper))
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1719
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1720 with center the mean of the conditional pdf of the value given the data, and (lower, upper) a confidence interval, centered on the median, containing the estimate to a probability alpha.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1721
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1722 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1723
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1724 stats.bayes_mvs([4,17,8,3],0.8) the result is (8.0, (0.49625108326958145, 15.503748916730416));(122.0, (15.611548029617781, 346.74229584218108));(8.8129230241075476, (3.9511451542075475, 18.621017583423871))
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1725
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1726 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1727 sigmaclip
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1728 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1729
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1730 Iterative sigma-clipping of array elements.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1731
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1732 The output array contains only those elements of the input array c that satisfy the conditions
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1733
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1734 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1735
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1736 c : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1737 Input array with clipped elements removed.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1738 critlower : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1739 Lower threshold value use for clipping.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1740 critlupper : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1741 Upper threshold value use for clipping.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1742
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1743
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1744 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1745
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1746 sigmaclip([4,17,8,3]) the result is [ 4. 17. 8. 3.],-14.0907220344,30.0907220344)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1747
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1748 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1749 threshold
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1750 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1751
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1752 Clip array to a given value.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1753
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1754 Similar to numpy.clip(), except that values less than threshmin or greater than threshmax are replaced by newval, instead of by threshmin and threshmax respectively.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1755
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1756
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1757 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1758
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1759 out : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1760 The clipped input array, with values less than threshmin or greater than threshmax replaced with newval.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1761
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1762 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1763
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1764 stats.threshold([4,17,8,3],2,8,0)the result is array([4, 17, 8, 3])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1765
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1766 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1767 trimboth
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1768 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1769
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1770 Slices off a proportion of items from both ends of an array.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1771
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1772 Slices off the passed proportion of items from both ends of the passed array (i.e., with proportiontocut = 0.1, slices leftmost 10% and rightmost 10% of scores). You must pre-sort the array if you want ‘proper’ trimming. Slices off less if proportion results in a non-integer slice index (i.e., conservatively slices off proportiontocut).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1773
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1774
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1775 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1776
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1777 out : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1778 Trimmed version of array a.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1779
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1780 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1781
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1782 stats.trimboth([4,17,8,3],0.1)the result is array([ 4, 17, 8, 3])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1783
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1784 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1785 trim1
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1786 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1787
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1788 Slices off a proportion of items from ONE end of the passed array distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1789
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1790 If proportiontocut = 0.1, slices off ‘leftmost’ or ‘rightmost’ 10% of scores. Slices off LESS if proportion results in a non-integer slice index (i.e., conservatively slices off proportiontocut ).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1791
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1792 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1793
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1794 trim1 : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1795
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1796 Trimmed version of array a
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1797
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1798 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1799
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1800 stats.trim1([4,17,8,3],0.5,'left')the result is array([8, 3])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1801
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1802 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1803 spearmanr
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1804 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1805
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1806 Calculates a Spearman rank-order correlation coefficient and the p-value to test for non-correlation.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1807
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1808 The Spearman correlation is a nonparametric measure of the monotonicity of the relationship between two datasets. Unlike the Pearson correlation, the Spearman correlation does not assume that both datasets are normally distributed. Like other correlation coefficients, this one varies between -1 and +1 with 0 implying no correlation. Correlations of -1 or +1 imply an exact monotonic relationship. Positive correlations imply that as x increases, so does y. Negative correlations imply that as x increases, y decreases.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1809
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1810 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1811
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1812 rho : float or ndarray (2-D square)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1813
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1814 Spearman correlation matrix or correlation coefficient (if only 2 variables are given as parameters. Correlation matrix is square with length equal to total number of variables (columns or rows) in a and b combined.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1815
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1816 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1817
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1818 The two-sided p-value for a hypothesis test whose null hypothesis is that two sets of data are uncorrelated, has same dimension as rho.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1819
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1820 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1821
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1822 stats.spearmanr([4,17,8,3,30,45,5,3],[5,3,4,17,8,3,30,45])the result is (-0.722891566265, 0.0427539458876)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1823
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1824 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1825 f oneway
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1826 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1827
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1828 Performs a 1-way ANOVA.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1829
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1830 The one-way ANOVA tests the null hypothesis that two or more groups have the same population mean. The test is applied to samples from two or more groups, possibly with differing sizes.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1831
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1832 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1833
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1834 F-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1835
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1836 The computed F-value of the test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1837
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1838 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1839
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1840 The associated p-value from the F-distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1841
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1842 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1843
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1844 stats. f_oneway([4,17,8,3], [30,45,5,3]) the result is (1.43569457222,0.276015080537)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1845
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1846 =================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1847 Mann-Whitney rank
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1848 =================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1849
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1850 Compute the Wilcoxon rank-sum statistic for two samples.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1851
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1852 The Wilcoxon rank-sum test tests the null hypothesis that two sets of measurements are drawn from the same distribution. The alternative hypothesis is that values in one sample are more likely to be larger than the values in the other sample.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1853
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1854 This test should be used to compare two samples from continuous distributions. It does not handle ties between measurements in x and y. For tie-handling and an optional continuity correction use mannwhitneyu.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1855
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1856 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1857
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1858 Computes the Mann-Whitney rank test on samples x and y.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1859
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1860 u : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1861
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1862 The Mann-Whitney statistics.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1863
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1864 prob : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1865
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1866 One-sided p-value assuming a asymptotic normal distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1867
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1868 ===================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1869 Ansari-Bradley test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1870 ===================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1871
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1872 Perform the Ansari-Bradley test for equal scale parameters
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1873
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1874 The Ansari-Bradley test is a non-parametric test for the equality of the scale parameter of the distributions from which two samples were drawn.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1875
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1876 The p-value given is exact when the sample sizes are both less than 55 and there are no ties, otherwise a normal approximation for the p-value is used.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1877
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1878 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1879
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1880 Computes the Ansari-Bradley test for samples x and y.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1881
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1882 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1883
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1884 AB : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1885
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1886 The Ansari-Bradley test statistic
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1887
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1888 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1889
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1890 The p-value of the hypothesis test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1891
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1892 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1893
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1894 ansari([1,2,3,4],[15,5,20,8,10,12]) the result is (10.0, 0.53333333333333333)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1895
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1896 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1897 bartlett
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1898 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1899
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1900 Perform Bartlett’s test for equal variances
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1901
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1902 Bartlett’s test tests the null hypothesis that all input samples are from populations with equal variances.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1903
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1904 It has to have at least two samples.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1905
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1906 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1907
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1908 T : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1909
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1910 The test statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1911
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1912 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1913
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1914 The p-value of the test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1915
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1916
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1917 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1918
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1919 stats.bartlett([4,17,8,3], [30,45,5,3]) the result is (2.87507113948,0.0899609995242)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1920
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1921 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1922 levene
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1923 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1924
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1925 Perform Levene test for equal variances.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1926
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1927 The Levene test tests the null hypothesis that all input samples are from populations with equal variances.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1928
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1929 It has to have at least two samples.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1930
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1931 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1932
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1933 W : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1934
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1935 The test statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1936
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1937 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1938
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1939 The p-value for the test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1940
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1941
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1942 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1943
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1944 stats.levene(center='mean',proportiontocut=0.01,[4,17,8,3], [30,45,5,3]) the result is (11.5803858521,0.014442549362)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1945
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1946 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1947 fligner
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1948 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1949
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1950 Perform Fligner’s test for equal variances.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1951
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1952 Fligner’s test tests the null hypothesis that all input samples are from populations with equal variances. Fligner’s test is non-parametric in contrast to Bartlett’s test bartlett and Levene’s test levene.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1953
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1954 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1955
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1956 Xsq : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1957
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1958 The test statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1959
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1960 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1961
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1962 The p-value for the hypothesis test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1963
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1964
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1965 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1966 linregress
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1967 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1968
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1969 Calculate a regression line
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1970
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1971 This computes a least-squares regression for two sets of measurements.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1972
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1973 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1974
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1975 Computes the least-squares regression for samples x and y.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1976
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1977 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1978
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1979 slope : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1980
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1981 slope of the regression line
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1982
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1983 intercept : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1984
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1985 intercept of the regression line
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1986
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1987 r-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1988
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1989 correlation coefficient
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1990
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1991 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1992
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1993 two-sided p-value for a hypothesis test whose null hypothesis is that the slope is zero.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1994
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1995 stderr : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1996
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1997 Standard error of the estimate
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1998
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
1999 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2000
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2001 linregress([4,417,8,3],[30,45,5,3]) the result is (0.0783053989099, 12.2930169177, 0.794515680443,0.205484319557,0.0423191764713)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2002
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2003 ===========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2004 ttest 1samp
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2005 ===========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2006
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2007 Calculates the T-test for the mean of ONE group of scores.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2008
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2009 This is a two-sided test for the null hypothesis that the expected value (mean) of a sample of independent observations a is equal to the given population mean, popmean.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2010
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2011 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2012
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2013 t : float or array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2014
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2015 The calculated t-statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2016
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2017 prob : float or array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2018
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2019 The two-tailed p-value.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2020
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2021 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2022
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2023 stats.ttest_1samp([4,17,8,3],[30,45,5,3])the result is (array([ -6.89975053, -11.60412589, 0.94087507, 1.56812512]), array([ 0.00623831, 0.00137449, 0.41617971, 0.21485306]))
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2024
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2025 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2026 ttest ind
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2027 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2028
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2029 Calculates the T-test for the means of TWO INDEPENDENT samples of scores.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2030
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2031 This is a two-sided test for the null hypothesis that 2 independent samples have identical average (expected) values. This test assumes that the populations have identical variances.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2032
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2033 The independent samples t-test is used when two separate sets of independent and identically distributed samples are obtained, one from each of the two populations
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2034 being compared.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2035 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2036 Computes the T-test for the means of independent samples x and y.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2037
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2038 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2039
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2040 t : float or array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2041
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2042 The calculated t-statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2043
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2044 prob : float or array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2045
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2046 The two-tailed p-value.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2047
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2048 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2049
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2050 ttest_ind([4,417,8,3],[30,45,5,3]) the result is (0.842956644207,0.431566932748)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2051
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2052 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2053 ttest rel
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2054 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2055
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2056 Calculates the T-test on TWO RELATED samples of scores, a and b.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2057
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2058 This is a two-sided test for the null hypothesis that 2 related or repeated samples have identical average (expected) values.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2059
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2060 related samples t-tests typically consist of a sample of matched pairs of similar units, or one group of units that has been tested twice (a "repeated measures" t-test)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2061
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2062 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2063
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2064 Computes the T-test for the means of related samples x and y.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2065
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2066 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2067
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2068 t : float or array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2069
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2070 t-statistic
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2071
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2072 prob : float or array
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2073
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2074 two-tailed p-value
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2075
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2076 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2077
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2078 ttest_rel([4,417,8,3],[30,45,5,3]) the result is (0.917072474241,0.426732624361)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2079
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2080 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2081 chisquare
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2082 =========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2083
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2084 Calculates a one-way chi square test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2085
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2086 The chi square test tests the null hypothesis that the categorical data has the given frequencies.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2087
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2088 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2089
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2090 chisq : float or ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2091
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2092 The chi-squared test statistic. The value is a float if axis is None or f_obs and f_exp are 1-D.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2093
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2094 p : float or ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2095
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2096 The p-value of the test. The value is a float if ddof and the return value chisq are scalars.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2097
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2098 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2099
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2100 stats.chisquare([4,17,8,3],[30,45,5,3],ddof=1)the result is (41.7555555556,8.5683326078e-10)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2101
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2102 ================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2103 power divergence
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2104 ================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2105
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2106 Cressie-Read power divergence statistic and goodness of fit test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2107
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2108 This function tests the null hypothesis that the categorical data has the given frequencies, using the Cressie-Read power divergence statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2109
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2110 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2111
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2112 stat : float or ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2113
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2114 The Cressie-Read power divergence test statistic. The value is a float if axis is None or if` f_obs and f_exp are 1-D.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2115
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2116 p : float or ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2117
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2118 The p-value of the test. The value is a float if ddof and the return value stat are scalars.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2119
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2120 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2121
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2122 stats.power_divergence([4,17,8,3],[30,45,5,3],1,lambda=1)the result is (41.7555555556, 8.5683326078e-10)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2123
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2124 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2125 tiecorrect
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2126 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2127
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2128 Tie correction factor for ties in the Mann-Whitney U and Kruskal-Wallis H tests.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2129
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2130 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2131
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2132 factor : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2133
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2134 Correction factor for U or H.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2135
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2136 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2137
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2138 stats.tiecorrect([4,17,8,3,30,45,5,3])the result is (0.988095238095)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2139
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2140 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2141 rankdata
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2142 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2143
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2144 Assign ranks to data, dealing with ties appropriately.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2145
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2146 Ranks begin at 1. The method argument controls how ranks are assigned to equal values. See [R308] for further discussion of ranking methods.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2147
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2148 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2149
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2150 ranks : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2151
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2152 An array of length equal to the size of a, containing rank scores.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2153
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2154 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2155
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2156 stats.rankdata([4,17,8,3],average)the result is ([ 2. 4. 3. 1.])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2157
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2158 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2159 kruskal
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2160 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2161
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2162 Compute the Kruskal-Wallis H-test for independent samples
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2163
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2164 The Kruskal-Wallis H-test tests the null hypothesis that the population median of all of the groups are equal. It is a non-parametric version of ANOVA.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2165
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2166 The number of samples have to be more than one
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2167
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2168 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2169
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2170 H-statistic : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2171
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2172 The Kruskal-Wallis H statistic, corrected for ties
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2173
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2174 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2175
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2176 The p-value for the test using the assumption that H has a chi square distribution
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2177
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2178
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2179 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2180
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2181 stats. kruskal([4,17,8,3], [30,45,5,3]) the result is (0.527108433735,0.467825077285)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2182
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2183 ==================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2184 friedmanchisquare
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2185 ==================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2186
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2187 Computes the Friedman test for repeated measurements
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2188
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2189 The Friedman test tests the null hypothesis that repeated measurements of the same individuals have the same distribution. It is often used to test for consistency among measurements obtained in different ways.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2190
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2191 The number of samples have to be more than two.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2192
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2193 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2194
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2195 friedman chi-square statistic : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2196
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2197 the test statistic, correcting for ties
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2198
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2199 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2200
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2201 the associated p-value assuming that the test statistic has a chi squared distribution
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2202
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2203
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2204 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2205
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2206 stats.friedmanchisquare([4,17,8,3],[8,3,30,45],[30,45,5,3])the result is (0.933333333333,0.627089085273)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2207
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2208 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2209 mood
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2210 =====
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2211
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2212 Perform Mood’s test for equal scale parameters.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2213
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2214 Mood’s two-sample test for scale parameters is a non-parametric test for the null hypothesis that two samples are drawn from the same distribution with the same scale parameter.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2215
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2216 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2217
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2218 Computes the Mood’s test for equal scale samples x and y.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2219
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2220 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2221
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2222 z : scalar or ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2223
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2224 The z-score for the hypothesis test. For 1-D inputs a scalar is returned;
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2225
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2226 p-value : scalar ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2227
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2228 The p-value for the hypothesis test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2229
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2230 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2231
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2232 mood([4,417,8,3],[30,45,5,3]) the result is (0.396928310068,0.691420327045)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2233
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2234 ===============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2235 combine_pvalues
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2236 ===============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2237
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2238 Methods for combining the p-values of independent tests bearing upon the same hypothesis.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2239
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2240
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2241 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2242
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2243 statistic: float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2244
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2245 The statistic calculated by the specified method: - “fisher”: The chi-squared statistic - “stouffer”: The Z-score
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2246
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2247 pval: float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2248
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2249 The combined p-value.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2250
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2251 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2252
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2253 stats.combine_pvalues([4,17,8,3],method='fisher',weights=[5,6,7,8]) the result is (-14.795123071,1.0)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2254
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2255 ===========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2256 median test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2257 ===========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2258
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2259 Mood’s median test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2260
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2261 Test that two or more samples come from populations with the same median.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2262
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2263 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2264
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2265 stat : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2266
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2267 The test statistic. The statistic that is returned is determined by lambda. The default is Pearson’s chi-squared statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2268
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2269 p : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2270
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2271 The p-value of the test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2272
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2273 m : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2274
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2275 The grand median.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2276
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2277 table : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2278
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2279 The contingency table.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2280
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2281
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2282 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2283
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2284 stats.median_test(ties='below',correction=True ,lambda=1,*a)the result is ((0.0, 1.0, 6.5, array([[2, 2],[2, 2]])))
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2285
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2286 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2287 shapiro
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2288 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2289
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2290 Perform the Shapiro-Wilk test for normality.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2291
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2292 The Shapiro-Wilk test tests the null hypothesis that the data was drawn from a normal distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2293
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2294 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2295
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2296 Computes the Shapiro-Wilk test for samples x and y.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2297
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2298 If x has length n, then y must have length n/2.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2299
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2300 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2301
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2302 W : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2303
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2304 The test statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2305
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2306 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2307
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2308 The p-value for the hypothesis test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2309
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2310
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2311 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2312
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2313 shapiro([4,417,8,3]) the result is (0.66630089283, 0.00436889193952)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2314
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2315 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2316 anderson
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2317 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2318
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2319 Anderson-Darling test for data coming from a particular distribution
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2320
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2321 The Anderson-Darling test is a modification of the Kolmogorov- Smirnov test kstest for the null hypothesis that a sample is drawn from a population that follows a particular distribution. For the Anderson-Darling test, the critical values depend on which distribution is being tested against. This function works for normal, exponential, logistic, or Gumbel (Extreme Value Type I) distributions.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2322
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2323 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2324
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2325 Computes the Anderson-Darling test for samples x which comes from a specific distribution..
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2326
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2327 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2328
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2329
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2330 A2 : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2331
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2332 The Anderson-Darling test statistic
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2333
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2334 critical : list
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2335
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2336 The critical values for this distribution
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2337
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2338 sig : list
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2339
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2340 The significance levels for the corresponding critical values in percents. The function returns critical values for a differing set of significance levels depending on the distribution that is being tested against.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2341
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2342 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2343
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2344 anderson([4,417,8,3],norm) the result is (0.806976419634,[ 1.317 1.499 1.799 2.098 2.496] ,[ 15. 10. 5. 2.5 1. ])
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2345
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2346 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2347 binom_test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2348 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2349
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2350 Perform a test that the probability of success is p.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2351
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2352 This is an exact, two-sided test of the null hypothesis that the probability of success in a Bernoulli experiment is p.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2353
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2354 he binomial test is an exact test of the statistical significance of deviations from a theoretically expected distribution of observations into two categories.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2355
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2356 -----
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2357
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2358 Computes the test for the probability of success is p .
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2359
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2360 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2361
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2362 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2363
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2364 The p-value of the hypothesis test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2365
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2366 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2367
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2368 binom_test([417,8],1,0.5) the result is (5.81382734132e-112)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2369
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2370 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2371 pearsonr
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2372 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2373
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2374 Calculates a Pearson correlation coefficient and the p-value for testing non-correlation.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2375
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2376 The Pearson correlation coefficient measures the linear relationship between two datasets.The value of the correlation (i.e., correlation coefficient) does not depend on the specific measurement units used.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2377
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2378 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2379
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2380 Pearson’s correlation coefficient: float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2381
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2382 2-tailed p-value: float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2383
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2384
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2385 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2386
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2387 pearsonr([4,17,8,3],[30,45,5,3]) the result is (0.695092958988,0.304907041012)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2388
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2389 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2390 wilcoxon
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2391 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2392
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2393 Calculate the Wilcoxon signed-rank test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2394
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2395 The Wilcoxon signed-rank test tests the null hypothesis that two related paired samples come from the same distribution. In particular, it tests whether the distribution of the differences x - y is symmetric about zero. It is a non-parametric version of the paired T-test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2396
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2397 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2398
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2399 T : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2400
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2401 The sum of the ranks of the differences above or below zero, whichever is smaller.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2402
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2403 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2404
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2405 The two-sided p-value for the test.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2406
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2407
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2408 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2409
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2410 stats.wilcoxon([3,6,23,70,20,55,4,19,3,6],
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2411 [23,70,20,55,4,19,3,6,23,70],zero_method='pratt',correction=True) the result is (23.0, 0.68309139830960874)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2412
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2413 ==============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2414 pointbiserialr
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2415 ==============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2416
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2417 Calculates a Pearson correlation coefficient and the p-value for testing non-correlation.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2418
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2419 The Pearson correlation coefficient measures the linear relationship between two datasets.The value of the correlation (i.e., correlation coefficient) does not depend on the specific measurement units used.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2420 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2421
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2422 r : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2423
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2424 R value
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2425
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2426 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2427
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2428 2-tailed p-value
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2429
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2430
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2431 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2432
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2433 pointbiserialr([0,0,0,1,1,1,1],[1,0,1,2,3,4,5]) the result is (0.84162541153017323, 0.017570710081214368)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2434
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2435 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2436 ks_2samp
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2437 ========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2438
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2439 Computes the Kolmogorov-Smirnov statistic on 2 samples.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2440
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2441 This is a two-sided test for the null hypothesis that 2 independent samples are drawn from the same continuous distribution.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2442
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2443 If the K-S statistic is small or the p-value is high, then we cannot reject the hypothesis that the distributions of the two samples are the same.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2444
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2445 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2446
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2447 D : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2448
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2449 KS statistic
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2450
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2451 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2452
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2453 two-tailed p-value
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2454
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2455
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2456 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2457
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2458 ks_2samp([4,17,8,3],[30,45,5,3]) the result is (0.5,0.534415719217)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2459
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2460 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2461 kendalltau
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2462 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2463
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2464 Calculates Kendall’s tau, a correlation measure for sample x and sample y.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2465
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2466 sample x and sample y should be in the same size.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2467
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2468 Kendall’s tau is a measure of the correspondence between two rankings. Values close to 1 indicate strong agreement, values close to -1 indicate strong disagreement. This is the tau-b version of Kendall’s tau which accounts for ties.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2469
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2470
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2471 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2472
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2473 Kendall’s tau : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2474
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2475 The tau statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2476
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2477 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2478
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2479 The two-sided p-value for a hypothesis test whose null hypothesis is an absence of association, tau = 0.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2480
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2481
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2482 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2483
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2484 kendalltau([4,17,8,3],[30,45,5,3]),the result is (0.666666666667,0.174231399708)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2485
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2486 ================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2487 chi2_contingency
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2488 ================
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2489
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2490 Chi-square test of independence of variables in a contingency table.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2491
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2492 This function computes the chi-square statistic and p-value for the hypothesis test of independence of the observed frequencies in the contingency table observed.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2493
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2494 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2495
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2496 chi2 : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2497
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2498 The test statistic.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2499
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2500 p : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2501
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2502 The p-value of the test
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2503
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2504 dof : int
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2505
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2506 Degrees of freedom
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2507
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2508 expected : ndarray, same shape as observed
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2509
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2510 The expected frequencies, based on the marginal sums of the table.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2511
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2512 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2513
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2514 stats.chi2_contingency([4,17,8,3],1)the result is (0.0, 1.0, 0, array([ 4., 17., 8., 3.]))
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2515
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2516 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2517 boxcox
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2518 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2519
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2520 Return a positive dataset transformed by a Box-Cox power transformation
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2521
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2522 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2523
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2524 boxcox : ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2525
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2526 Box-Cox power transformed array.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2527
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2528 maxlog : float, optional
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2529
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2530 If the lmbda parameter is None, the second returned argument is the lambda that maximizes the log-likelihood function.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2531
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2532 (min_ci, max_ci) : tuple of float, optional
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2533
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2534 If lmbda parameter is None and alpha is not None, this returned tuple of floats represents the minimum and maximum confidence limits given alpha.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2535
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2536
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2537 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2538
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2539 stats.boxcox([4,17,8,3],0.9) the result is ([ 1.03301717 1.60587825 1.35353026 0.8679017 ],-0.447422166194,(-0.5699221654511225, -0.3259515659400082))
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2540
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2541 ==============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2542 boxcox normmax
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2543 ==============
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2544
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2545 Compute optimal Box-Cox transform parameter for input data
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2546
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2547 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2548
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2549 maxlog : float or ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2550
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2551 The optimal transform parameter found. An array instead of a scalar for method='all'.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2552
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2553
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2554 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2555
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2556 stats.boxcox_normmax([4,17,8,3],(-2,2),'pearsonr')the result is (-0.702386238971)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2557
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2558 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2559 boxcox llf
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2560 ==========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2561
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2562 The boxcox log-likelihood function
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2563
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2564 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2565
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2566 llf : float or ndarray
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2567
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2568 Box-Cox log-likelihood of data given lmb. A float for 1-D data, an array otherwise.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2569
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2570 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2571
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2572 stats.boxcox_llf(1,[4,17,8,3]) the result is (-6.83545336723)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2573
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2574 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2575 entropy
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2576 =======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2577
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2578 Calculate the entropy of a distribution for given probability values.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2579
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2580 If only probabilities pk are given, the entropy is calculated as S = -sum(pk * log(pk), axis=0).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2581
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2582 If qk is not None, then compute the Kullback-Leibler divergence S = sum(pk * log(pk / qk), axis=0).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2583
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2584 This routine will normalize pk and qk if they don’t sum to 1.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2585
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2586 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2587
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2588 S : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2589
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2590 The calculated entropy.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2591
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2592
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2593 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2594
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2595 stats.entropy([4,17,8,3],[30,45,5,3],1.6)the result is (0.641692653659)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2596
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2597 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2598 kstest
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2599 ======
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2600
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2601 Perform the Kolmogorov-Smirnov test for goodness of fit.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2602
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2603 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2604
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2605 D : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2606
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2607 KS test statistic, either D, D+ or D-.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2608
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2609 p-value : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2610
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2611 One-tailed or two-tailed p-value.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2612
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2613 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2614
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2615 stats.kstest([4,17,8,3],'norm',N=20,alternative='two-sided',mode='approx')the result is (0.998650101968,6.6409100441e-12)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2616
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2617 ===========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2618 theilslopes
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2619 ===========
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2620
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2621 Computes the Theil-Sen estimator for a set of points (x, y).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2622
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2623 theilslopes implements a method for robust linear regression. It computes the slope as the median of all slopes between paired values.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2624
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2625 **The output are:**
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2626
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2627 medslope : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2628
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2629 Theil slope.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2630
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2631 medintercept : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2632
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2633 Intercept of the Theil line, as median(y) - medslope*median(x).
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2634
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2635 lo_slope : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2636
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2637 Lower bound of the confidence interval on medslope.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2638
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2639 up_slope : float
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2640
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2641 Upper bound of the confidence interval on medslope.
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2642
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2643 **example**:
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2644
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2645 stats.theilslopes([4,17,8,3],[30,45,5,3],0.95)the result is (0.279166666667,1.11458333333,-0.16,2.5)
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2646
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2647 </help>
178b22349b79 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/statistics commit 7c5002672919ca1e5eacacb835a4ce66ffa19656
bgruening
parents:
diff changeset
2648 </tool>