PC1 Software Defect Prediction One of the NASA Metrics Data Program defect data sets. Data from flight software for earth orbiting satellite. Data comes from McCabe and Halstead features extractors of source code. These features were defined in the 70s in an attempt to objectively characterize code features that are associated with software quality.
Attribute Information:
- loc : numeric % McCabe's line count of code
- v(g) : numeric % McCabe "cyclomatic complexity"
- ev(g) : numeric % McCabe "essential complexity"
- iv(g) : numeric % McCabe "design complexity"
- n : numeric % Halstead total operators + operands
- v : numeric % Halstead "volume"
- l : numeric % Halstead "program length"
- d : numeric % Halstead "difficulty"
- i : numeric % Halstead "intelligence"
- e : numeric % Halstead "effort"
- b : numeric % Halstead
- t : numeric % Halstead's time estimator
- lOCode : numeric % Halstead's line count
- lOComment : numeric % Halstead's count of lines of comments
- lOBlank : numeric % Halstead's count of blank lines
- lOCodeAndComment: numeric
- uniq_Op : numeric % unique operators
- uniq_Opnd : numeric % unique operands
- total_Op : numeric % total operators
- total_Opnd : numeric % total operands
- branchCount : numeric % of the flow graph
- branchCount : numeric % of the flow graph
- defects : {false,true} % module has/has not one or more reported defects
Data Mining Goal: To classify whether the module has one or more defect or not i.e true or false.
Class Attribute: The ‘defects’ attribute stores the class label once the model has classified whether a module has/has not one or more reported defects
Citation: https://www.openml.org/d/1068