{ "data_id": "1045", "name": "kc1-top5", "exact_name": "kc1-top5", "version": 1, "version_label": null, "description": "**Author**: \n**Source**: Unknown - Date unknown \n**Please cite**: \n\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\nThis is a PROMISE Software Engineering Repository data set made publicly\navailable in order to encourage repeatable, verifiable, refutable, and\/or\nimprovable predictive models of software engineering.\n\nIf you publish material based on PROMISE data sets then, please\nfollow the acknowledgment guidelines posted on the PROMISE repository\nweb page http:\/\/promise.site.uottawa.ca\/SERepository .\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n1. Title: Class-level data for KC1\nThis one includes a {DEF,NODEF} attribute (DL) to indicate\ndefectiveness. DL is equal to DEF if the module is in the Top5% in\ndefect count ranking, NODEF otherwise.\n\n2. Sources\n(a) Creator: A. Gunes Koru\n(b) Date: February 21, 2005\n(c) Contact: gkoru AT umbc DOT edu Phone: +1 (410) 455 8843\n\n3. Donor: A. Gunes Koru\n\n4. Past Usage: This data set was used for:\n\nA. Gunes Koru and Hongfang Liu, \"An Investigation of the Effect\nof Module Size on Defect Prediction Using Static Measures\", PROMISE -\nPredictive Models in Software Engineering Workshop, ICSE 2005,\nMay 15th 2005, Saint Louis, Missouri, US.\n\nWe used several machine learning algorithms to predict the defective\nmodules in five NASA products, namely, CM1, JM1, KC1, KC2, and PC1.\nA set of static measures were used as predictor variables. While doing\nso, we observed that a large portion of the modules were small, as\nmeasured by lines of code (LOC). When we experimented on the data\nsubsets created by partitioning according to module size, we obtained\nhigher prediction performance for the subsets that include larger\nmodules. We also performed defect prediction using class-level data\nfor KC1 rather than method-level data. In this case, the use of class-level\ndata resulted in improved prediction performance compared to using\nmethod-level data. These findings suggest that quality assurance activities\ncan be guided even better if defect predictions are made by using\ndata that belong to larger modules.\n\n5. Features:\n\nThe descriptions of the features are taken from\nhttp:\/\/mdp.ivv.nasa.gov\/mdp_glossary.html\n\nFeature Used as the Response Variable:\n======================================\nDL: Defect level. DEF if the class is in the Top 5% in defect ranking, NODEF\notherwise.\n\nFeatures at Class Level Originally\n==================================\n\nPERCENT_PUB_DATA: The percentage of data that is public and protected data\nin a class. In general, lower values indicate greater encapsulation. It is\nmeasure of encapsulation.\n\nACCESS_TO_PUB_DATA: The amount of times that a class's public and protected\ndata is accessed. In general, lower values indicate greater encapsulation.\nIt is a measure of encapsulation.\n\nCOUPLING_BETWEEN_OBJECTS: The number of distinct non-inheritance-related\nclasses on which a class depends. If a class that is heavily dependent on\nmany classes outside of its hierarchy is introduced into a library, all the\nclasses upon which it depends need to be introduced as well. This may be\nacceptable, especially if the classes which it references are already part\nof a class library and are even more fundamental than the specified class.\n\nDEPTH: The level for a class. For instance, if a parent has one child the\ndepth for the child is two. Depth indicates at what level a class is located\nwithin its class hierarchy. In general, inheritance increases when depth\nincreases.\n\nLACK_OF_COHESION_OF_METHODS: For each data field in a class, the percentage\nof the methods in the class using that data field; the percentages are\naveraged then subtracted from 100%. The locm metric indicates low or\nhigh percentage of cohesion. If the percentage is low, the class is cohesive.\nIf it is high, it may indicate that the class could be split into separate\nclasses that will individually have greater cohesion.\n\nNUM_OF_CHILDREN: The number of classes derived from a specified class.\n\nDEP_ON_CHILD: Whether a class is dependent on a descendant.\n\nFAN_IN: This is a count of calls by higher modules.\n\nRESPONSE_FOR_CLASS: A count of methods implemented within a class plus the\nnumber of methods accessible to an object class due to inheritance. In\ngeneral, lower values indicate greater polymorphism.\n\nWEIGHTED_METHODS_PER_CLASS: A count of methods implemented within a class\n(rather than all methods accessible within the class hierarchy). In general,\nlower values indicate greater polymorphism.\nFeatures Transformed to Class Level (Originally at Method Level)\n================================================================\n\nTransformation was achieved by obtaining min, max, sum, and avg values\nover all the methods in a class. There this data set includes four\nfeatures for all of the following features that were originally at the\nmethod level but transformed to the class level. For example, LOC_BLANK\nhas minLOC_BLANK, maxLOC_BLANK, avgLOC_BLANK, and maxLOC_BLANK.\n\nLOC_BLANK: Lines with only white space or no text content.\n\nBRANCH_COUNT: This metric is the number of branches for each module.\nBranches are defined as those edges that exit from a decision node.\nThe greater the number of branches in a program's modules, the more\ntesting resource's required.\n\nLOC_CODE_AND_COMMENT: Lines that contain both code and comment.\n\nLOC_COMMENTS: The number of lines in a module. This particular metric\nincludes all blank lines, comment lines, and source lines.\n\nCYCLOMATIC_COMPLEXITY: It is a measure of the complexity of a modules\ndecision structure. It is the number of linearly independent paths.\n\nDESIGN_COMPLEXITY: Design complexity is a measure of a module's decision\nstructure as it relates to calls to other modules. This quantifies the\ntesting effort related to integration.\n\nESSENTIAL_COMPLEXITY: Essential complexity is a measure of the degree to\nwhich a module contains unstructured constructs.\n\nLOC_EXECUTABLE: Source lines of code that contain only code and white space.\n\nHALSTEAD_CONTENT: Complexity of a given algorithm independent of the\nlanguage used to express the algorithm.\n\nHALSTEAD_DIFFICULTY: Level of difficulty in the program.\n\nHALSTEAD_EFFORT: Estimated mental effort required to develop the program.\n\nHALSTEAD_ERROR_EST: Estimated number of errors in the program.\n\nHALSTEAD_LENGTH: This is a Halstead metric that includes the total number\nof operator occurrences and total number of operand occurrences.\n\nHALSTEAD_LEVEL: Level at which the program can be understood.\n\nHALSTEAD_PROG_TIME: Estimated amount of time to implement the algorithm.\n\nHALSTEAD_VOLUME: This is a Halstead metric that contains the minimum\nnumber of bits required for coding the program.\n\nNUM_OPERANDS: Variables and identifiers Constants (numeric literal\/string)\nFunction names when used during calls.\n\nNUM_UNIQUE_OPERANDS: Variables and identifiers Constants\n(numeric literal\/string) Function names when used during calls\n\nNUM_UNIQUE_OPERATORS: Number of unique operators.\n\nLOC_TOTAL: Total Lines of Code.", "format": "ARFF", "uploader": "Joaquin Vanschoren", "uploader_id": 2, "visibility": "public", "creator": "NASA Metrics Data Program", "contributor": null, "date": "2014-10-06 23:57:05", "update_comment": null, "last_update": "2014-10-06 23:57:05", "licence": "Public", "status": "active", "error_message": null, "url": "https:\/\/www.openml.org\/data\/download\/53928\/kc1-top5.arff", "default_target_attribute": "DL", "row_id_attribute": null, "ignore_attribute": null, "runs": 747, "suggest": { "input": [ "kc1-top5", "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% This is a PROMISE Software Engineering Repository data set made publicly available in order to encourage repeatable, verifiable, refutable, and\/or improvable predictive models of software engineering. If you publish material based on PROMISE data sets then, please follow the acknowledgment guidelines posted on the PROMISE repository web page http:\/\/promise.site.uottawa.ca\/SERepository . %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% " ], "weight": 5 }, "qualities": { "NumberOfInstances": 145, "NumberOfFeatures": 95, "NumberOfClasses": 2, "NumberOfMissingValues": 0, "NumberOfInstancesWithMissingValues": 0, "NumberOfNumericFeatures": 94, "NumberOfSymbolicFeatures": 1, "REPTreeDepth3Kappa": 0, "DecisionStumpKappa": 0.35745937961595214, "MaxMeansOfNumericAtts": 76249.58813793102, "MinMutualInformation": null, "Quartile2SkewnessOfNumericAtts": 2.402596558897384, "RandomTreeDepth1AUC": 0.7244525547445255, "Dimensionality": 0.6551724137931034, "MaxMutualInformation": null, "MinNominalAttDistinctValues": 2, "PercentageOfBinaryFeatures": 1.0526315789473684, "Quartile2StdDevOfNumericAtts": 7.961034839927189, "RandomTreeDepth1ErrRate": 0.07586206896551724, "EquivalentNumberOfAtts": null, "MaxNominalAttDistinctValues": 2, "MinSkewnessOfNumericAtts": -1.1067404890725656, "PercentageOfInstancesWithMissingValues": 0, "Quartile3AttributeEntropy": null, "RandomTreeDepth1Kappa": 0.3815432338115544, "J48.00001.AUC": 0.6870437956204379, "MaxSkewnessOfNumericAtts": 8.424910690992874, "MinStdDevOfNumericAtts": 0, "PercentageOfMissingValues": 0, "Quartile3KurtosisOfNumericAtts": 16.950202491358255, "AutoCorrelation": 0.9097222222222222, "RandomTreeDepth2AUC": 0.7244525547445255, "J48.00001.ErrRate": 0.07586206896551724, "MaxStdDevOfNumericAtts": 200468.24943606052, "MinorityClassPercentage": 5.517241379310345, "PercentageOfNumericFeatures": 98.94736842105263, "Quartile3MeansOfNumericAtts": 59.62068965517243, "CfsSubsetEval_DecisionStumpAUC": 0.7723540145985401, "RandomTreeDepth2ErrRate": 0.07586206896551724, "J48.00001.Kappa": 0.3127962085308053, "MeanAttributeEntropy": null, "MinorityClassSize": 8, "PercentageOfSymbolicFeatures": 1.0526315789473684, "Quartile3MutualInformation": null, "CfsSubsetEval_DecisionStumpErrRate": 0.06206896551724138, "RandomTreeDepth2Kappa": 0.3815432338115544, "J48.0001.AUC": 0.6870437956204379, "MeanKurtosisOfNumericAtts": 13.15535663372959, "NaiveBayesAUC": 0.7343191542914674, "Quartile1AttributeEntropy": null, "Quartile3SkewnessOfNumericAtts": 3.955851349604334, "CfsSubsetEval_DecisionStumpKappa": 0.1564318034906264, "RandomTreeDepth3AUC": 0.7244525547445255, "J48.0001.ErrRate": 0.07586206896551724, "MeanMeansOfNumericAtts": 1290.4663028382242, "NaiveBayesErrRate": 0.10344827586206896, "Quartile1KurtosisOfNumericAtts": 2.4370155409221645, "Quartile3StdDevOfNumericAtts": 62.40734339676811, "CfsSubsetEval_NaiveBayesAUC": 0.7723540145985401, "RandomTreeDepth3ErrRate": 0.07586206896551724, "J48.0001.Kappa": 0.3127962085308053, "MeanMutualInformation": null, "NaiveBayesKappa": 0.2972536348949922, "Quartile1MeansOfNumericAtts": 1, "REPTreeDepth1AUC": 0.49817518248175185, "CfsSubsetEval_NaiveBayesErrRate": 0.06206896551724138, "RandomTreeDepth3Kappa": 0.3815432338115544, "J48.001.AUC": 0.6870437956204379, "MeanNoiseToSignalRatio": null, "NumberOfBinaryFeatures": 1, "Quartile1MutualInformation": null, "REPTreeDepth1ErrRate": 0.05517241379310345, "CfsSubsetEval_NaiveBayesKappa": 0.1564318034906264, "CfsSubsetEval_kNN1NAUC": 0.7723540145985401, "StdvNominalAttDistinctValues": 0, "J48.001.ErrRate": 0.07586206896551724, "MeanNominalAttDistinctValues": 2, "Quartile1SkewnessOfNumericAtts": 1.4562228076497536, "REPTreeDepth1Kappa": 0, "CfsSubsetEval_kNN1NErrRate": 0.06206896551724138, "kNN1NAUC": 0.656478102189781, "J48.001.Kappa": 0.3127962085308053, "MeanSkewnessOfNumericAtts": 2.72712132223159, "Quartile1StdDevOfNumericAtts": 0.9441255564551316, "REPTreeDepth2AUC": 0.49817518248175185, "CfsSubsetEval_kNN1NKappa": 0.1564318034906264, "kNN1NErrRate": 0.05517241379310345, "MajorityClassPercentage": 94.48275862068965, "MeanStdDevOfNumericAtts": 2999.2874289113665, "Quartile2AttributeEntropy": null, "REPTreeDepth2ErrRate": 0.05517241379310345, "ClassEntropy": 0.30797532887291956, "kNN1NKappa": 0.40020682523267864, "MajorityClassSize": 137, "MinAttributeEntropy": null, "Quartile2KurtosisOfNumericAtts": 8.183019210231222, "REPTreeDepth2Kappa": 0, "REPTreeDepth3AUC": 0.49817518248175185, "DecisionStumpAUC": 0.7769160583941606, "MaxAttributeEntropy": null, "MinKurtosisOfNumericAtts": -0.8175267423917751, "Quartile2MeansOfNumericAtts": 7.396686296551723, "REPTreeDepth3ErrRate": 0.05517241379310345, "DecisionStumpErrRate": 0.08275862068965517, "MaxKurtosisOfNumericAtts": 69.94376253117557, "MinMeansOfNumericAtts": 0, "Quartile2MutualInformation": null }, "tags": [ { "uploader": "38960", "tag": "Chemistry" }, { "uploader": "38960", "tag": "Life Science" }, { "uploader": "1", "tag": "mythbusting_1" }, { "uploader": "24659", "tag": "PROMISE" }, { "uploader": "2", "tag": "study_1" }, { "uploader": "939", "tag": "study_15" }, { "uploader": "939", "tag": "study_20" }, { "uploader": "1", "tag": "study_41" }, { "uploader": "64", "tag": "study_7" }, { "uploader": "4209", "tag": "study_88" } ], "features": [ { "name": "DL", "index": "94", "type": "nominal", "distinct": "2", "missing": "0", "target": "1", "distr": [ [ "DEF", "NODEF" ], [ [ "8", "0" ], [ "0", "137" ] ] ] }, { "name": "PERCENT_PUB_DATA", "index": "0", "type": "numeric", "distinct": "12", "missing": "0", "min": "0", "max": "100", "mean": "14", "stdev": "33" }, { "name": "ACCESS_TO_PUB_DATA", "index": "1", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "COUPLING_BETWEEN_OBJECTS", "index": "2", "type": "numeric", "distinct": "25", "missing": "0", "min": "0", "max": "24", "mean": "8", "stdev": "6" }, { "name": "DEPTH", "index": "3", "type": "numeric", "distinct": "7", "missing": "0", "min": "1", "max": "7", "mean": "2", "stdev": "1" }, { "name": "LACK_OF_COHESION_OF_METHODS", "index": "4", "type": "numeric", "distinct": "41", "missing": "0", "min": "0", "max": "100", "mean": "69", "stdev": "37" }, { "name": "NUM_OF_CHILDREN", "index": "5", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "5", "mean": "0", "stdev": "1" }, { "name": "DEP_ON_CHILD", "index": "6", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "FAN_IN", "index": "7", "type": "numeric", "distinct": "4", "missing": "0", "min": "0", "max": "3", "mean": "1", "stdev": "1" }, { "name": "RESPONSE_FOR_CLASS", "index": "8", "type": "numeric", "distinct": "63", "missing": "0", "min": "0", "max": "222", "mean": "34", "stdev": "36" }, { "name": "WEIGHTED_METHODS_PER_CLASS", "index": "9", "type": "numeric", "distinct": "39", "missing": "0", "min": "0", "max": "100", "mean": "17", "stdev": "17" }, { "name": "minLOC_BLANK", "index": "10", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "minBRANCH_COUNT", "index": "11", "type": "numeric", "distinct": "1", "missing": "0", "min": "1", "max": "1", "mean": "1", "stdev": "0" }, { "name": "minLOC_CODE_AND_COMMENT", "index": "12", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "minLOC_COMMENTS", "index": "13", "type": "numeric", "distinct": "1", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "minCYCLOMATIC_COMPLEXITY", "index": "14", "type": "numeric", "distinct": "1", "missing": "0", "min": "1", "max": "1", "mean": "1", "stdev": "0" }, { "name": "minDESIGN_COMPLEXITY", "index": "15", "type": "numeric", "distinct": "1", "missing": "0", "min": "1", "max": "1", "mean": "1", "stdev": "0" }, { "name": "minESSENTIAL_COMPLEXITY", "index": "16", "type": "numeric", "distinct": "1", "missing": "0", "min": "1", "max": "1", "mean": "1", "stdev": "0" }, { "name": "minLOC_EXECUTABLE", "index": "17", "type": "numeric", "distinct": "5", "missing": "0", "min": "0", "max": "4", "mean": "0", "stdev": "1" }, { "name": "minHALSTEAD_CONTENT", "index": "18", "type": "numeric", "distinct": "13", "missing": "0", "min": "0", "max": "13", "mean": "2", "stdev": "3" }, { "name": "minHALSTEAD_DIFFICULTY", "index": "19", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "3", "mean": "1", "stdev": "1" }, { "name": "minHALSTEAD_EFFORT", "index": "20", "type": "numeric", "distinct": "12", "missing": "0", "min": "0", "max": "76", "mean": "6", "stdev": "13" }, { "name": "minHALSTEAD_ERROR_EST", "index": "21", "type": "numeric", "distinct": "2", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "minHALSTEAD_LENGTH", "index": "22", "type": "numeric", "distinct": "9", "missing": "0", "min": "0", "max": "10", "mean": "2", "stdev": "2" }, { "name": "minHALSTEAD_LEVEL", "index": "23", "type": "numeric", "distinct": "16", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "minHALSTEAD_PROG_TIME", "index": "24", "type": "numeric", "distinct": "12", "missing": "0", "min": "0", "max": "4", "mean": "0", "stdev": "1" }, { "name": "minHALSTEAD_VOLUME", "index": "25", "type": "numeric", "distinct": "8", "missing": "0", "min": "0", "max": "32", "mean": "4", "stdev": "6" }, { "name": "minNUM_OPERANDS", "index": "26", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "6", "mean": "1", "stdev": "1" }, { "name": "minNUM_OPERATORS", "index": "27", "type": "numeric", "distinct": "7", "missing": "0", "min": "0", "max": "6", "mean": "2", "stdev": "1" }, { "name": "minNUM_UNIQUE_OPERANDS", "index": "28", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "5", "mean": "1", "stdev": "1" }, { "name": "minNUM_UNIQUE_OPERATORS", "index": "29", "type": "numeric", "distinct": "6", "missing": "0", "min": "0", "max": "5", "mean": "2", "stdev": "1" }, { "name": "minLOC_TOTAL", "index": "30", "type": "numeric", "distinct": "7", "missing": "0", "min": "1", "max": "10", "mean": "2", "stdev": "1" }, { "name": "maxLOC_BLANK", "index": "31", "type": "numeric", "distinct": "25", "missing": "0", "min": "0", "max": "58", "mean": "6", "stdev": "8" }, { "name": "maxBRANCH_COUNT", "index": "32", "type": "numeric", "distinct": "38", "missing": "0", "min": "1", "max": "89", "mean": "15", "stdev": "17" }, { "name": "maxLOC_CODE_AND_COMMENT", "index": "33", "type": "numeric", "distinct": "12", "missing": "0", "min": "0", "max": "12", "mean": "1", "stdev": "2" }, { "name": "maxLOC_COMMENTS", "index": "34", "type": "numeric", "distinct": "26", "missing": "0", "min": "0", "max": "44", "mean": "5", "stdev": "8" }, { "name": "maxCYCLOMATIC_COMPLEXITY", "index": "35", "type": "numeric", "distinct": "30", "missing": "0", "min": "1", "max": "45", "mean": "8", "stdev": "8" }, { "name": "maxDESIGN_COMPLEXITY", "index": "36", "type": "numeric", "distinct": "24", "missing": "0", "min": "1", "max": "45", "mean": "7", "stdev": "8" }, { "name": "maxESSENTIAL_COMPLEXITY", "index": "37", "type": "numeric", "distinct": "19", "missing": "0", "min": "1", "max": "26", "mean": "5", "stdev": "5" }, { "name": "maxLOC_EXECUTABLE", "index": "38", "type": "numeric", "distinct": "82", "missing": "0", "min": "0", "max": "262", "mean": "47", "stdev": "51" }, { "name": "maxHALSTEAD_CONTENT", "index": "39", "type": "numeric", "distinct": "122", "missing": "0", "min": "0", "max": "193", "mean": "48", "stdev": "38" }, { "name": "maxHALSTEAD_DIFFICULTY", "index": "40", "type": "numeric", "distinct": "112", "missing": "0", "min": "0", "max": "54", "mean": "16", "stdev": "13" }, { "name": "maxHALSTEAD_EFFORT", "index": "41", "type": "numeric", "distinct": "123", "missing": "0", "min": "0", "max": "324804", "mean": "26595", "stdev": "47128" }, { "name": "maxHALSTEAD_ERROR_EST", "index": "42", "type": "numeric", "distinct": "63", "missing": "0", "min": "0", "max": "3", "mean": "0", "stdev": "0" }, { "name": "maxHALSTEAD_LENGTH", "index": "43", "type": "numeric", "distinct": "104", "missing": "0", "min": "0", "max": "1106", "mean": "158", "stdev": "176" }, { "name": "maxHALSTEAD_LEVEL", "index": "44", "type": "numeric", "distinct": "18", "missing": "0", "min": "0", "max": "2", "mean": "1", "stdev": "0" }, { "name": "maxHALSTEAD_PROG_TIME", "index": "45", "type": "numeric", "distinct": "123", "missing": "0", "min": "0", "max": "18045", "mean": "1478", "stdev": "2618" }, { "name": "maxHALSTEAD_VOLUME", "index": "46", "type": "numeric", "distinct": "118", "missing": "0", "min": "0", "max": "7919", "mean": "933", "stdev": "1166" }, { "name": "maxNUM_OPERANDS", "index": "47", "type": "numeric", "distinct": "88", "missing": "0", "min": "0", "max": "428", "mean": "59", "stdev": "67" }, { "name": "maxNUM_OPERATORS", "index": "48", "type": "numeric", "distinct": "97", "missing": "0", "min": "0", "max": "678", "mean": "99", "stdev": "110" }, { "name": "maxNUM_UNIQUE_OPERANDS", "index": "49", "type": "numeric", "distinct": "63", "missing": "0", "min": "0", "max": "120", "mean": "25", "stdev": "22" }, { "name": "maxNUM_UNIQUE_OPERATORS", "index": "50", "type": "numeric", "distinct": "31", "missing": "0", "min": "0", "max": "37", "mean": "14", "stdev": "8" }, { "name": "maxLOC_TOTAL", "index": "51", "type": "numeric", "distinct": "85", "missing": "0", "min": "1", "max": "288", "mean": "60", "stdev": "61" }, { "name": "avgLOC_BLANK", "index": "52", "type": "numeric", "distinct": "83", "missing": "0", "min": "0", "max": "13", "mean": "1", "stdev": "2" }, { "name": "avgBRANCH_COUNT", "index": "53", "type": "numeric", "distinct": "95", "missing": "0", "min": "1", "max": "21", "mean": "4", "stdev": "3" }, { "name": "avgLOC_CODE_AND_COMMENT", "index": "54", "type": "numeric", "distinct": "33", "missing": "0", "min": "0", "max": "2", "mean": "0", "stdev": "0" }, { "name": "avgLOC_COMMENTS", "index": "55", "type": "numeric", "distinct": "69", "missing": "0", "min": "0", "max": "12", "mean": "1", "stdev": "1" }, { "name": "avgCYCLOMATIC_COMPLEXITY", "index": "56", "type": "numeric", "distinct": "90", "missing": "0", "min": "1", "max": "11", "mean": "2", "stdev": "2" }, { "name": "avgDESIGN_COMPLEXITY", "index": "57", "type": "numeric", "distinct": "92", "missing": "0", "min": "1", "max": "9", "mean": "2", "stdev": "1" }, { "name": "avgESSENTIAL_COMPLEXITY", "index": "58", "type": "numeric", "distinct": "60", "missing": "0", "min": "1", "max": "8", "mean": "2", "stdev": "1" }, { "name": "avgLOC_EXECUTABLE", "index": "59", "type": "numeric", "distinct": "114", "missing": "0", "min": "0", "max": "61", "mean": "12", "stdev": "12" }, { "name": "avgHALSTEAD_CONTENT", "index": "60", "type": "numeric", "distinct": "133", "missing": "0", "min": "0", "max": "57", "mean": "18", "stdev": "11" }, { "name": "avgHALSTEAD_DIFFICULTY", "index": "61", "type": "numeric", "distinct": "125", "missing": "0", "min": "0", "max": "19", "mean": "5", "stdev": "4" }, { "name": "avgHALSTEAD_EFFORT", "index": "62", "type": "numeric", "distinct": "133", "missing": "0", "min": "0", "max": "32843", "mean": "3896", "stdev": "5910" }, { "name": "avgHALSTEAD_ERROR_EST", "index": "63", "type": "numeric", "distinct": "110", "missing": "0", "min": "0", "max": "0", "mean": "0", "stdev": "0" }, { "name": "avgHALSTEAD_LENGTH", "index": "64", "type": "numeric", "distinct": "129", "missing": "0", "min": "0", "max": "188", "mean": "39", "stdev": "38" }, { "name": "avgHALSTEAD_LEVEL", "index": "65", "type": "numeric", "distinct": "129", "missing": "0", "min": "0", "max": "1", "mean": "0", "stdev": "0" }, { "name": "avgHALSTEAD_PROG_TIME", "index": "66", "type": "numeric", "distinct": "132", "missing": "0", "min": "0", "max": "1825", "mean": "216", "stdev": "328" }, { "name": "avgHALSTEAD_VOLUME", "index": "67", "type": "numeric", "distinct": "133", "missing": "0", "min": "0", "max": "1128", "mean": "201", "stdev": "220" }, { "name": "avgNUM_OPERANDS", "index": "68", "type": "numeric", "distinct": "122", "missing": "0", "min": "0", "max": "73", "mean": "15", "stdev": "14" }, { "name": "avgNUM_OPERATORS", "index": "69", "type": "numeric", "distinct": "126", "missing": "0", "min": "0", "max": "115", "mean": "25", "stdev": "23" }, { "name": "avgNUM_UNIQUE_OPERANDS", "index": "70", "type": "numeric", "distinct": "116", "missing": "0", "min": "0", "max": "33", "mean": "8", "stdev": "6" }, { "name": "avgNUM_UNIQUE_OPERATORS", "index": "71", "type": "numeric", "distinct": "115", "missing": "0", "min": "0", "max": "16", "mean": "6", "stdev": "3" }, { "name": "avgLOC_TOTAL", "index": "72", "type": "numeric", "distinct": "124", "missing": "0", "min": "1", "max": "80", "mean": "17", "stdev": "15" }, { "name": "sumLOC_BLANK", "index": "73", "type": "numeric", "distinct": "57", "missing": "0", "min": "0", "max": "510", "mean": "26", "stdev": "56" }, { "name": "sumBRANCH_COUNT", "index": "74", "type": "numeric", "distinct": "85", "missing": "0", "min": "1", "max": "1046", "mean": "68", "stdev": "120" }, { "name": "sumLOC_CODE_AND_COMMENT", "index": "75", "type": "numeric", "distinct": "16", "missing": "0", "min": "0", "max": "57", "mean": "2", "stdev": "7" }, { "name": "sumLOC_COMMENTS", "index": "76", "type": "numeric", "distinct": "41", "missing": "0", "min": "0", "max": "254", "mean": "14", "stdev": "30" }, { "name": "sumCYCLOMATIC_COMPLEXITY", "index": "77", "type": "numeric", "distinct": "70", "missing": "0", "min": "1", "max": "572", "mean": "41", "stdev": "66" }, { "name": "sumDESIGN_COMPLEXITY", "index": "78", "type": "numeric", "distinct": "70", "missing": "0", "min": "1", "max": "409", "mean": "37", "stdev": "55" }, { "name": "sumESSENTIAL_COMPLEXITY", "index": "79", "type": "numeric", "distinct": "51", "missing": "0", "min": "1", "max": "345", "mean": "24", "stdev": "36" }, { "name": "sumLOC_EXECUTABLE", "index": "80", "type": "numeric", "distinct": "108", "missing": "0", "min": "0", "max": "2313", "mean": "211", "stdev": "346" }, { "name": "sumHALSTEAD_CONTENT", "index": "81", "type": "numeric", "distinct": "131", "missing": "0", "min": "0", "max": "2865", "mean": "309", "stdev": "423" }, { "name": "sumHALSTEAD_DIFFICULTY", "index": "82", "type": "numeric", "distinct": "124", "missing": "0", "min": "0", "max": "1590", "mean": "98", "stdev": "173" }, { "name": "sumHALSTEAD_EFFORT", "index": "83", "type": "numeric", "distinct": "131", "missing": "0", "min": "0", "max": "1973867", "mean": "76250", "stdev": "200468" }, { "name": "sumHALSTEAD_ERROR_EST", "index": "84", "type": "numeric", "distinct": "90", "missing": "0", "min": "0", "max": "21", "mean": "1", "stdev": "2" }, { "name": "sumHALSTEAD_LENGTH", "index": "85", "type": "numeric", "distinct": "118", "missing": "0", "min": "0", "max": "11172", "mean": "725", "stdev": "1313" }, { "name": "sumHALSTEAD_LEVEL", "index": "86", "type": "numeric", "distinct": "119", "missing": "0", "min": "0", "max": "33", "mean": "5", "stdev": "5" }, { "name": "sumHALSTEAD_PROG_TIME", "index": "87", "type": "numeric", "distinct": "130", "missing": "0", "min": "0", "max": "109659", "mean": "4236", "stdev": "11137" }, { "name": "sumHALSTEAD_VOLUME", "index": "88", "type": "numeric", "distinct": "131", "missing": "0", "min": "0", "max": "63241", "mean": "3763", "stdev": "7276" }, { "name": "sumNUM_OPERANDS", "index": "89", "type": "numeric", "distinct": "117", "missing": "0", "min": "0", "max": "4439", "mean": "273", "stdev": "504" }, { "name": "sumNUM_OPERATORS", "index": "90", "type": "numeric", "distinct": "116", "missing": "0", "min": "0", "max": "6733", "mean": "452", "stdev": "810" }, { "name": "sumNUM_UNIQUE_OPERANDS", "index": "91", "type": "numeric", "distinct": "99", "missing": "0", "min": "0", "max": "1820", "mean": "139", "stdev": "218" }, { "name": "sumNUM_UNIQUE_OPERATORS", "index": "92", "type": "numeric", "distinct": "101", "missing": "0", "min": "0", "max": "1383", "mean": "111", "stdev": "162" }, { "name": "sumLOC_TOTAL", "index": "93", "type": "numeric", "distinct": "121", "missing": "0", "min": "1", "max": "2883", "mean": "296", "stdev": "448" } ], "nr_of_issues": 0, "nr_of_downvotes": 0, "nr_of_likes": 0, "nr_of_downloads": 0, "total_downloads": 0, "reach": 0, "reuse": 0, "impact_of_reuse": 0, "reach_of_reuse": 0, "impact": 0 }