The REG Procedure

Parameter Estimates and Associated Statistics

The following example uses the fitness data from Example 99.2. Figure 99.31 shows the parameter estimates and the tables from the SS1, SS2, STB, CLB, COVB, and CORRB options:

proc reg data=fitness;
   model Oxygen=RunTime Age Weight RunPulse MaxPulse RestPulse
         / ss1 ss2 stb clb covb corrb;
run;

The procedure first displays an analysis of variance table (Figure 99.30). The F statistic for the overall model is significant, indicating that the model explains a significant portion of the variation in the data.

Figure 99.30: ANOVA Table

The REG Procedure
Model: MODEL1
Dependent Variable: Oxygen

Analysis of Variance
SourceDFSum of
Squares
Mean
Square
F ValuePr > F
Model6722.54361120.4239322.43<.0001
Error24128.837945.36825  
Corrected Total30851.38154   

Root MSE2.31695R-Square0.8487
Dependent Mean47.37581Adj R-Sq0.8108
Coeff Var4.89057  


The procedure next displays parameter estimates and some associated statistics (Figure 99.31). First, the estimates are shown, followed by their standard errors. The next two columns of the table contain the t statistics and the corresponding probabilities for testing the null hypothesis that the parameter is not significantly different from zero. These probabilities are usually referred to as p-values. For example, the Intercept term in the model is estimated to be 102.9 and is significantly different from zero. The next two columns of the table are the result of requesting the SS1 and SS2 options, and they show sequential and partial sums of squares (SS) associated with each variable. The standardized estimates (produced by the STB option) are the parameter estimates that result when all variables are standardized to a mean of 0 and a variance of 1. These estimates are computed by multiplying the original estimates by the standard deviation of the regressor (independent) variable and then dividing by the standard deviation of the dependent variable. The CLB option adds the upper and lower 95% confidence limits for the parameter estimates; the level can be changed by specifying the ALPHA= option in the PROC REG or MODEL statement.

Figure 99.31: SS1, SS2, STB, CLB, COVB, and CORRB Options: Parameter Estimates

Parameter Estimates
VariableDFParameter
Estimate
Standard
Error
t ValuePr > |t|Type I SSType II SSStandardized
Estimate
95% Confidence Limits
Intercept1102.9344812.403268.30<.000169578369.72831077.33541128.53355
RunTime1-2.628650.38456-6.84<.0001632.90010250.82210-0.68460-3.42235-1.83496
Age1-0.226970.09984-2.270.032217.7656327.74577-0.22204-0.43303-0.02092
Weight1-0.074180.05459-1.360.18695.605229.91059-0.11597-0.186850.03850
RunPulse1-0.369630.11985-3.080.005138.8757451.05806-0.71133-0.61699-0.12226
MaxPulse10.303220.136502.220.036026.8264026.491420.521610.021500.58493
RestPulse1-0.021530.06605-0.330.74730.570510.57051-0.03080-0.157860.11480


The final two tables are produced as a result of requesting the COVB and CORRB options (Figure 99.32). These tables show the estimated covariance matrix of the parameter estimates, and the estimated correlation matrix of the estimates.

Figure 99.32: SS1, SS2, STB, CLB, COVB, and CORRB Options: Covariances and Correlations

Covariance of Estimates
VariableInterceptRunTimeAgeWeightRunPulseMaxPulseRestPulse
Intercept153.840811520.7678373769-0.902049478-0.1782378180.280796516-0.832761667-0.147954715
RunTime0.76783737690.1478880839-0.014191688-0.004417672-0.0090477840.0046249498-0.010915224
Age-0.902049478-0.0141916880.0099675210.0010219105-0.0012039140.00358238430.0014897532
Weight-0.178237818-0.0044176720.00102191050.00298041310.0009644683-0.0013722410.0003799295
RunPulse0.280796516-0.009047784-0.0012039140.00096446830.0143647273-0.014952457-0.000764507
MaxPulse-0.8327616670.00462494980.0035823843-0.001372241-0.0149524570.01863093640.0003425724
RestPulse-0.147954715-0.0109152240.00148975320.0003799295-0.0007645070.00034257240.0043631674

Correlation of Estimates
VariableInterceptRunTimeAgeWeightRunPulseMaxPulseRestPulse
Intercept1.00000.1610-0.7285-0.26320.1889-0.4919-0.1806
RunTime0.16101.0000-0.3696-0.2104-0.19630.0881-0.4297
Age-0.7285-0.36961.00000.1875-0.10060.26290.2259
Weight-0.2632-0.21040.18751.00000.1474-0.18420.1054
RunPulse0.1889-0.1963-0.10060.14741.0000-0.9140-0.0966
MaxPulse-0.49190.08810.2629-0.1842-0.91401.00000.0380
RestPulse-0.1806-0.42970.22590.1054-0.09660.03801.0000


For further discussion of the parameters and statistics, see the section Displayed Output, and Chapter 4: Introduction to Regression Procedures.