Return 0.0 for mean of a categorical variable. Fixes bug mentioned in bug report...
authorJason Stover <jhs@debs.(none)>
Sat, 11 Jul 2009 19:45:49 +0000 (15:45 -0400)
committerBen Pfaff <blp@gnu.org>
Fri, 17 Jul 2009 03:11:24 +0000 (20:11 -0700)
src/math/linreg.c

index 609a78b6dc9cd98a1d228110e533c396578d996d..2b4f7c9069000705425e7c6af8940e0cccb1315a 100644 (file)
@@ -626,7 +626,7 @@ double pspp_linreg_get_indep_variable_mean (pspp_linreg_cache *c, const struct v
       coef = pspp_linreg_get_coeff (c, v, NULL);
       return pspp_coeff_get_mean (coef);
     }
-  return GSL_NAN;
+  return 0.0;
 }
 
 void pspp_linreg_set_indep_variable_mean (pspp_linreg_cache *c, const struct variable *v,