Presentation is loading. Please wait.

Presentation is loading. Please wait.

I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTRET & Evaluating Regression analyses With The Help of PROC RSQUARE Animal Science 500.

Similar presentations


Presentation on theme: "I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTRET & Evaluating Regression analyses With The Help of PROC RSQUARE Animal Science 500."— Presentation transcript:

1 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTRET & Evaluating Regression analyses With The Help of PROC RSQUARE Animal Science 500 Lecture No. 10 October 5, 2010

2 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG u The purpose of robust regression is to detect outliers and provide stable results in the presence of outliers. n In order to achieve this stability, robust regression limits the influence of outliers. u Outliers can be classified as: n Problems with outliers in the y-direction (response direction) n Problems with multivariate outliers in the x-space (i.e., outliers in the covariate space, which are also referred to as leverage points) n Problems with outliers in both the y-direction and the x-space

3 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG u Two types of estimations methods u M Estimation - is the method for outlier detection and robust regression when contamination is mainly in the response direction (y) u LTS Estimation - the method used when data contamination occurs in the x space.

4 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG M-estimation u The following ROBUSTREG statements analyze the data: Proc Robustreg data=stack; model y = x1 x2 x3 / diagnostics leverage; id x1; test x3; run; quit;

5 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG M-estimation Proc Robustreg data=stack; model y = x1 x2 x3 / diagnostics leverage; id x1; test x3; run; quit; The procedure does M estimation with the bisquare weight function (default), and it uses the median method for estimating the scale parameter. The MODEL statement specifies the covariate effects. The DIAGNOSTICS option requests a table for outlier diagnostics, The LEVERAGE option adds leverage point diagnostic results to this table for continuous covariate effects. The ID statement specifies that variable x1 is used to identify each observation in this table. If the ID statement is missing, the observation number is used to identify the observations (might even be better this way in some cases). Tests of significance for the covariate effects are obtained using the test line with a variable(s) listed with the test term. http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect3.htm

6 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG example output M-estimation The ROBUSTREG Procedure Model Information Data Set WORK.STACK Dependent Variable y Number of Covariates 3 Number of Observations 21 Method M Estimation Summary Statistics Variable Q1 Median Q3 Mean Standard MAD Deviation x1 53.0000 58.0000 62.0000 60.4286 9.1683 5.9304 x2 18.0000 20.0000 24.0000 21.0952 3.1608 2.9652 x3 82.0000 87.0000 89.5000 86.2857 5.3586 4.4478 y 10.0000 15.0000 19.5000 17.5238 10.1716 5.9304 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect3.htm

7 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG example output The ROBUSTREG Procedure Parameter Estimates ParameterDFEstimate Standard Error95% Confidence LimitsChi-SquarePr > ChiSq Intercept1-42.28549.5045-60.9138-23.656919.79<.0001 x110.92760.10770.71641.138774.11<.0001 x210.65070.29400.07441.22704.900.0269 x31-0.11230.1249-0.35710.13240.810.3683 Scale12.2819 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect3.htm

8 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG example output M-estimation Diagnostics Obsx1 Mahalanobis Distance Robust MCD Distance Leverage Standardized Robust Residual Outlier 180.0000002.25365.5284*1.0995 280.0000002.32475.6374*-1.1409 375.0000001.59374.1972*1.5604 462.0000001.27191.5887 3.0381* 2170.0000002.17683.6573*-4.5733* The ROBUSTREG Procedure http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect3.htm

9 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG example output M-estimation Diagnostics Summary Observation TypeProportionCutoff Outlier0.09523.0000 Leverage0.19053.0575 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect3.htm

10 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG LTS-estimation u The following statements invoke the ROBUSTREG procedure with the LTS estimation method. Proc Robustreg data=hbk fwls method=lts; model y = x1 x2 x3 / diagnostics leverage; Id index; run; quit;

11 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG LTS-estimation u The following statements invoke the ROBUSTREG procedure with the LTS estimation method. Proc Robustreg data=hbk fwls method=lts; model y = x1 x2 x3 / diagnostics leverage; Id index; run; quit; http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect4.htm

12 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG Output LTS-estimation The ROBUSTREG Procedure Model Information Data SetWORK.HBK Dependent Variabley Number of Covariates3 Number of Observations75 MethodLTS Estimation http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect4.htm

13 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG Output LTS-estimation The ROBUSTREG Procedure Model Information Data SetWORK.HBK Dependent Variabley Number of Covariates3 Number of Observations75 MethodLTS Estimation Summary Statistics VariableQ1MedianQ3Mean Standard DeviationMAD X10.80001.80003.10003.20673.65261.9274 X21.00002.20003.30005.59738.23911.6309 X30.90002.10003.00007.230711.74031.7791 Y-0.50000.10000.70001.27873.49280.8896 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect4.htm

14 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG Output LTS-estimation The ROBUSTREG Procedure LTS Profile Total Number of Observations75 Number of Squares Minimized57 Number of Coefficients4 Highest Possible Breakdown Value 0.2533 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect4.htm

15 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG Output LTS-estimation The ROBUSTREG Procedure LTS Parameter Estimates ParameterDFEstimate Intercept1-0.3431 x110.0901 x210.0703 x31-0.0731 Scale (sLTS)00.7451 Scale (Wscale)00.5749 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect4.htm

16 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG Output LTS-estimation Diagnostics Obsindex Mahalanobis Distance Robust MCD Distance Leverage Standardized Robust Residual Outlier 111.916829.4424*17.0868* 321.855830.2054*17.8428* 532.313731.8909*18.3063* 742.229732.8621*16.9702* 952.100132.2778*17.7498* 1162.146230.5892*17.5155* 1372.010530.6807*18.8801* 1581.919329.7994*18.2253* 1792.221231.9537*17.1843* 19102.333530.9429*17.8021* 21112.446536.6384*0.0406 23123.108337.9552*-0.0874 25132.662436.9175*1.0776 27146.381641.0914*-0.7875 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect4.htm

17 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG Output LTS-estimation Diagnostics Summary Observation TypeProportionCutoff Outlier0.13333.0000 Leverage0.18673.0575 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect4.htm

18 I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTREG Output LTS-estimation Parameter Estimates for Final Weighted Least Squares Fit ParameterDFEstimate Standard Error 95% Confidence Limits Chi- Square Pr > ChiSq Intercept1-0.18050.1044-0.38520.02422.990.0840 x110.08140.0667-0.04930.21201.490.2222 x210.03990.0405-0.03940.11920.970.3242 x31-0.05170.0354-0.12100.01772.130.1441 Scale00.5572 http://support.sas.com/onlinedoc/913/getDoc/en/statug.hlp/rreg_sect4.htm The final weighted least squares estimates are shown. These estimates are least squares estimates computed after deleting the detected outliers.

19 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE u The RSQUARE procedure selects optimal subsets of independent variables in a multiple regression analysis. u Regression coefficients and a variety of statistics useful for model selection can be printed or output to a SAS data set. u In SAS Version 6+, the RSQUARE procedure is subsumed by PROC REG.

20 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE u General Form n PROC RSQUARE options; l MODEL dependents=independents/options; l FREQ variable; l WEIGHT variable; l BY variables; n Run; n Quit;

21 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE u There must be one or more MODEL statements. u The FREQ, WEIGHT, and BY statements can appear only once. u The MODEL, FREQ, WEIGHT, and BY statements can appear in any order.

22 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Options u The following options can be specified in the PROC statement; n DATA=SASdataset l names the SAS data set to be used. l The data set can be an ordinary SAS data set or a TYPE=CORR, COV, or SSCP data set. If the DATA= option is omitted, RSQUARE uses the most recently created SAS data set. n SIMPLE|S l Prints means and standard deviations for every variable listed in a MODEL statement.

23 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Options u The following options can be specified in the PROC statement; n CORR|C l Pprints the correlation matrix for all variables in the analysis. n NOINT l suppresses the intercept term from all models. n NOPRINT l suppresses the regression printout n OUTEST=SASdataset l creates a TYPE=EST data set containing model-selection statistics and parameter estimates for the selected models.

24 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Options u The options listed in the MODEL Statement section can also be used in the PROC RSQUARE statement. u Any option specified in the PROC statement applies to every MODEL statement except those in which you specify a different value of the option. u Optional statistics will appear in the OUTEST= data set only if the corresponding options are specified in the PROC statement

25 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Model Statement Options u MODEL dependents=independents/options ; u Options are listed after a forward slash that follows the model statement u SELECT=n u Specifies the maximum number of subset models of each size to be printed or output to the OUTEST= data set. u If SELECT= is used without the B option, the variables in each MODEL are listed in order of inclusion instead of the order in which they appear in the MODEL statement. u If SELECT= is omitted and the number of regressors is less than 11, all possible subsets are evaluated. u If SELECT= is omitted and the number of regressors is greater than 10, the number of subsets selected is at most equal to the number of regressors. A small value of SELECT= greatly reduces the CPU time required for large problems.

26 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Model Statement Options u MODEL dependents=independents/options ; u Options are listed after a forward slash that follows the model statement n INCLUDE=i l Requests that the first i variables after the equal sign in the MODEL statement be included in every regression model. l The default status = no variables are required to appear in every model. n START=n l Specifies the smallest number of regressors to be reported in a subset model. The default value is one more than the value specified by the INCLUDE= option, or one if INCLUDE= is omitted.

27 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Model Statement Options u MODEL dependents=independents/options ; u Options are listed after a forward slash that follows the model statement n STOP=n l Specifies the largest number of regressors to be reported in a subset model. The default is the number of regressors listed in the MODEL statement. n ADJRSQ l Computes r-square adjusted for degrees of freedom for each model selected. n CP l Computes Mallows' Cp statistic for each model selected.

28 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Model Statement Options u MODEL dependents=independents/options ; u Options are listed after a forward slash that follows the model statement n JP l Computes Jp, the estimated mean square error of prediction for each model selected assuming that the values of the regressors are fixed and that the model is correct. l The Jp statistic is also called the final prediction error (FPE). n MSE l Computes the mean square error for each model selected. n SSE l Computes the error sum of squares for each model selected. n B l Computes estimated regression coefficients for each model selected

29 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Model Statement Options u MODEL dependents=independents/options ; u The FREQ Statement can also be used in this syntax u The use of FREQ in this sense treats the data set as if each observation appears n times where n is the value of the FREQ variable for the observation. u The total number of observations will be considered equal to the sum of the FREQ variable when the procedure determines the df when calculating significance probabilities. PROC RSQUARE options; MODEL dependents=independents/options; FREQ variable; WEIGHT variable; BY variables; Run; Quit;

30 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Model Statement Options u MODEL dependents=independents/options ; u The FREQ Statement can also be used in this syntax u If your data set includes a variable indicating the frequency of occurrence for other values in the observation, you would include this variables name beside the Freq statement. PROC RSQUARE options; MODEL dependents=independents/options; FREQ variable; WEIGHT variable; BY variables; Run; Quit;

31 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUAREModel Statement Options u MODEL dependents=independents/options ; u The WEIGHT Statement can also be used in this syntax u The WEIGHT statement names a variable in the input data set whose values are relative weights for a weighted least-squares fit. If the weight value is proportional to the reciprocal of the variance for each observation, then the weighted estimates are the best linear unbiased estimates (BLUE). u The WEIGHT and FREQ statements have similar effects, except in the calculation of degrees of freedom. BY Statement PROC RSQUARE options; MODEL dependents=independents/options; FREQ variable; WEIGHT variable; BY variables; Run; Quit;

32 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Model Statement Options u MODEL dependents=independents/options ; u The BY variable can be used in this syntax u The BY statement can be used with PROC RSQUARE u Will result in separate analyses on observations in groups defined by the BY variables. u When a BY statement appears, the procedure expects the input data set to be sorted in order of the BY variables. u If the data has not been sorted previously in ascending order, u Use PROC SORT procedure with a similar BY statement to sort the data, u Or might be appropriate to use the option NOTSORTED u or DESCENDING if data was previous sorted in the largest to smallest value for some other reason previously. u Most likely you will need to sort the data

33 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE Model Statement Options PROC SORT DATA=New by variable1; Run; Quit; PROC RSQUARE options; MODEL dependents=independents/options; FREQ variable; WEIGHT variable; BY variables; Run; Quit;

34 I OWA S TATE U NIVERSITY Department of Animal Science PROC RSQUARE u What we are building toward using PROC RSQUARE is building the best model or most predictive model. u Topic of next lecture Model Development and Selection of Variables


Download ppt "I OWA S TATE U NIVERSITY Department of Animal Science PROC ROBUSTRET & Evaluating Regression analyses With The Help of PROC RSQUARE Animal Science 500."

Similar presentations


Ads by Google