Consider the
quality score prediction problem.
That is, you are interested in deriving a multiple regression model
to predict quality score from two independent variables. Quality score
is the time to the first failure in hours.
However, in this case, the independent variables
are all-uses coverage, x1 (i.e. a coverage measure that is similar
to decision coverage), and programmer experience, x2 (i.e.
programming experience in years).
You obtain a large random sample of 3-tuples and use
proc reg to obtain the output below.
Given this output, complete the following:
- Comment on the estimates of the
slope parameters. That is, interpret the estimates and
comment on the importance of each parameter to the model.
- Your colleagues argue
that a unit increase in all-uses coverage will lead to an increase in
execution time to first failure of 240 minutes. You believe that the
benefit of this additional coverage is better than they contend.
Formulate the necessary hypotheses to resolve this issue.
Given the proc reg output, conduct a test of hypotheses.
Parameter Estimates
Parameter Standard
Variable Estimate Error t Value Pr > |t|
Intercept 17.33146 5.94571 8.50 0.0172
x1 5.42188 1.87820 8.33 0.0180
x2 3.00957 1.47685 4.15 0.0720