|
Chapter Contents |
Previous |
Next |
| Introduction to Project Management |
The cost corresponding to each possible subcontracting firm may be a combination of the actual costs (consulting fees and so on) and the tardiness of the project (tardiness being measured as the time difference between when the results are expected to be available and the target date for the availability of the results). The information required could be provided in terms of Gantt charts and cost analysis charts. Using this information, the project manager for the drug development project can use the principles of decision analysis to determine whether to do the analysis in-house or assign it to an outside consulting firm and to pick the firm to which the subcontract is to be assigned. Some of these ideas are illustrated in the following example.
Output 1.9.1: Input Data Sets for Decision ProblemThe PROBIN= data set, prob, identifies the various probabilities associated with the different possible outcomes at each of the chance events. The prob data set is also displayed in Output 1.9.1.
The rewards (or payoffs) associated with each of the end stages are listed in the PAYOFFS= data set, payoff (also listed in Output 1.9.1). For example, for the in-house team, the high (low) cost associated with completing the analysis on time is $12,000 ($9,500), and so on.
The following program invokes PROC DTREE to solve the decision problem. The complete decision tree, displayed in Output 1.9.2, represents the various stages and outcomes of the problem and identifies the optimal decision. In this example, the drug company should award the consulting contract to the second consulting firm as indicated by the red line for the corresponding branch of the tree.
See Chapter 3, "The DTREE Procedure," for details about the DTREE procedure.
title f=swiss "Subcontracting Decision";
goptions ftext=swissbu;
symbol1 f=marker v=P c=blue;
symbol2 f=marker v=U c=green;
symbol3 f=marker v=A c=red;
/* PROC DTREE statements */
proc dtree stagein=stage
probin=prob
payoffs=payoff
nowarning
;
evaluate;
treeplot / graphics
compress ybetween=1 cell
lwidth=1 lwidthb=2 hsymbol=2
symbolc=1 symbold=2 symbole=3
;
quit;
Output 1.9.2: Decision Analysis
|
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.