Metrics for Process and Projects Chapter 15 & 22 Metrics for Process and Projects Software Engineering: A Practitioner’s Approach 6th Edition Roger S. Pressman
Measurement Provides a mechanism for objective evaluation Assists in Estimation Quality control Productivity assessment Project Control Tactical decision-making Acts as management tool
Measures, Metrics and Indicators A measure provides a quantitative indication of the extent, amount, dimension, capacity, or size of some attribute of a product or process. E.g., Number of errors The IEEE glossary defines a metric as “a quantitative measure of the degree to which a system, component, or process possesses a given attribute.” E.g., Number of errors found per person hours expended An indicator is a metric or combination of metrics that provide insight into the software process, a software project, or the product itself.
Motivation for Metrics Estimate the cost & schedule of future projects Evaluate the productivity impacts of new tools and techniques Establish productivity trends over time Improve software quality Forecast future staffing needs Anticipate and reduce future maintenance needs
A Good Manager Measures process process metrics project metrics measurement product metrics product What do we use as a basis? • size? • function?
Metrics in the Process and Project Domains Process metrics are collected across all projects and over long periods of time Project metrics enable a software project manager to Assess the status of an ongoing project Track potential risks Uncover problem areas before they go “critical” Adjust work flow or tasks Evaluate the project team’s ability to control quality of software work products
Process Metrics and Software Process Improvement (1) Product Customer characteristics Business conditions Process People Technology Development environment Fig.-22.1: Determinants for s/w quality and organizational effectiveness
Process Metrics and Software Process Improvement (2) We measure the efficacy of a s/w process indirectly, based on outcomes Probable outcomes are Measures of errors uncovered before release of the s/w Defects delivered to and reported by end-users Work products delivered (productivity) Human effort expended Calendar time expended Schedule conformance, etc.
Process Metrics and Software Process Improvement (3) Software metrics etiquette [GRA92] Use common sense and organizational sensitivity when interpreting metrics data Provide regular feedback to the individuals and teams who collect measures and metrics Don’t use metrics to appraise individuals
Process Metrics and Software Process Improvement (4) Software metrics etiquette [GRA92] (contd.) Work with practitioners and teams to set clear goals and metrics that will be used to achieve them Never use metrics to threaten individuals or teams Metrics data that indicate a problem area should not be considered “negative”. These data are merely an indicator for process improvement Don’t obsess on a single metric to the exclusion of other important metrics
Process Metrics and Software Process Improvement (5) Error Some flaw in a s/w engineering work product that is uncovered before the s/w is delivered to the end-user Defect A flaw that is uncovered after delivery to the end-user
Project Metrics Used during estimation Used to monitor and control progress The intent is twofold Minimize the development schedule Assess product quality on an ongoing basis Leads to a reduction in overall project cost
Typical Project Metrics Effort/time per software engineering task Errors uncovered per review hour Scheduled vs. actual milestone dates Changes (number) and their characteristics Distribution of effort on software engineering tasks
Software Measurement S/W measurement can be categorized in two ways: Direct measures of the s/w process (e.g., cost and effort applied) and product (e.g., lines of code (LOC) produced, etc.) Indirect measures of the product (e.g., functionality, quality, complexity, etc.) Requires normalization of both size- and function-oriented metrics
Size-Oriented Metrics (1) Lines of Code (LOC) can be chosen as the normalization value Example of simple size-oriented metrics Errors per KLOC (thousand lines of code) Defects per KLOC $ per KLOC Pages of documentation per KLOC
Size-Oriented Metrics (2) Project LOC Effort $(000) Pp. doc. Errors Defects People alpha 12,100 24 168 365 134 29 3 Beta 27,200 62 440 1224 321 86 5 gamma 20,200 43 314 1050 256 64 6 .
Size-Oriented Metrics (3) Controversy regarding use of LOC as a key measure According to the proponents LOC is an “artifact” of all s/w development projects Many existing s/w estimation models use LOC or KLOC as a key input According to the opponents LOC measures are programming language dependent They penalize well-designed but shorter programs Cannot easily accommodate nonprocedural languages Difficult to predict during estimation
Function-Oriented Metrics The most widely used function-oriented metric is the function point (FP) Computation of the FP is based on characteristics of the software’s information domain and complexity
Information Domain Number of external inputs – from user or another application Number of external outputs Number of external inquiries – request from user that generates an on-line output Number of internal logical files (maintained by system) Number of external interface files (provides data but not maintained by system) 19
Computing Function Points
Analyzing the Information Domain 12 3 5 25 2 8 4 40 1 7 92 [0.65 + 0.01 × ∑(Fi)] count-total × [0.65 + 0.01 ×∑(Fi)]
Taking Complexity into Account Factors(Fi) are rated on a scale of 0 (not important) to 5 (essential) The following are some examples of these factors: Is high performance critical? Is the internal processing complex? Is the system to be used in multiple sites and/or by multiple organizations? Is the code designed to be reusable? Is the processing to be distributed? and so forth . . .
Computing Function Points 12 3 5 25 2 8 4 40 1 7 92 [0.65 + 0.01 × ∑(Fi)] 1.07 98.44 count-total × [0.65 + 0.01 ×∑(Fi)]
Uses of Function Points(FP) But how long will the project take and how much will it cost? If programmers in an organization produce average 16 function points per month. Thus . . . 98.44 FP divided by 16 = 6 man-months If the average programmer is paid $5,200 per month (including benefits), then the [labor] cost of the project will be . . . 6 man-months X $5,200 = $31,200
Pros & Cons of FP Controversy regarding use of FP as a key measure According to the proponents It is programming language independent Can be predicted before coding is started According to the opponents Based on subjective rather than objective data Has no direct physical meaning – it’s just a number
Reconciling LOC and FP Metrics
Chapter 15 & 22 15.2, 15.3, 22.1, 22.2 Exercises 15.5, 22.3, 22.4, 22.5, 22.8