From 94cf26c46f7d2437b39f4738bd088ff510903017 Mon Sep 17 00:00:00 2001 From: botlab Date: Sat, 11 Apr 2015 14:02:28 -0400 Subject: [PATCH] Divided wrong --- gitgoing/gitgoing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitgoing/gitgoing.py b/gitgoing/gitgoing.py index 375b900..d7e620d 100755 --- a/gitgoing/gitgoing.py +++ b/gitgoing/gitgoing.py @@ -57,7 +57,7 @@ def cv(x): cv : float The coefficient of variation of the entire array """ - return mean_plus_one(x)/std_plus_one(x) + return std_plus_one(x)/mean_plus_one(x) def is_neuron_component(component): return component in NEURON_COMPONENTS \ No newline at end of file