Changeset 4062
- Timestamp:
- Dec 14, 2007, 12:12:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/core/net/sf/basedb/plugins/LowessNormalization.java
r4061 r4062 602 602 if (sumW <= 0) 603 603 { 604 throw new BaseException("Sum of weigths in line_fit is not positive"); 604 throw new BaseException("Sum of weigths in line_fit is not positive. " + 605 "This may happen if there are too few data points in a block group. Please " + 606 "increase the 'block group' parameter, or set it to 0 to include all blocks " + 607 "in a single group"); 605 608 } 606 609 double denom = sumW * sumAA - sumA * sumA;
Note: See TracChangeset
for help on using the changeset viewer.