Changeset 118 for trunk/CrossPare/src/de
- Timestamp:
- 06/02/16 17:02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/eval/AbstractWekaEvaluation.java
r115 r118 211 211 private double calculateReviewEffort(Instances testdata, Classifier classifier) { 212 212 213 // attribute in the JURECZKO data and default 213 214 Attribute loc = testdata.attribute("loc"); 214 215 if (loc == null) { 216 // attribute in the NASA/SOFTMINE/MDP data 215 217 loc = testdata.attribute("LOC_EXECUTABLE"); 216 218 } 217 219 if (loc == null) { 220 // attribute in the AEEEM data 218 221 loc = testdata.attribute("numberOfLinesOfCode"); 222 } 223 if (loc == null) { 224 // attribute in the RELINK data 225 loc = testdata.attribute("CountLineCodeExe"); 219 226 } 220 227 if( loc == null ) {
Note: See TracChangeset
for help on using the changeset viewer.