diff options
author | zsloan | 2016-06-20 16:01:12 +0000 |
---|---|---|
committer | zsloan | 2016-06-20 16:01:12 +0000 |
commit | 30a37c6f1f9a9f759a92fd61876af9e9e3d078b9 (patch) | |
tree | e4f5b49aa21c32aa2b770b1a65c8fef7782b625f /wqflask/utility/Plot.py | |
parent | 4fec0e6fc0772785a30451d417082bc189f2f6dd (diff) | |
parent | 10df36b60273d81678f6630c07a2d8e5a6409282 (diff) | |
download | genenetwork2-30a37c6f1f9a9f759a92fd61876af9e9e3d078b9.tar.gz |
Merge branch 'staging' of github.com:genenetwork/genenetwork2 into development
Diffstat (limited to 'wqflask/utility/Plot.py')
-rw-r--r-- | wqflask/utility/Plot.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/wqflask/utility/Plot.py b/wqflask/utility/Plot.py index 444c71c9..063de387 100644 --- a/wqflask/utility/Plot.py +++ b/wqflask/utility/Plot.py @@ -282,11 +282,11 @@ def gpercentile(lst2, np): def find_outliers(vals): """Calculates the upper and lower bounds of a set of sample/case values - - + + >>> find_outliers([3.504, 5.234, 6.123, 7.234, 3.542, 5.341, 7.852, 4.555, 12.537]) (11.252500000000001, 0.5364999999999993) - + >>> >>> find_outliers([9,12,15,17,31,50,7,5,6,8]) (32.0, -8.0) @@ -294,7 +294,7 @@ def find_outliers(vals): which code that calls it will have to deal with. >>> find_outliers([]) (None, None) - + """ print("xerxes vals is:", pf(vals)) |