General Statistics Examples |
The technique of estimating parameters in linear models by using
the notion of regression quantiles is a generalization of
the LAE or LAV least absolute value estimation technique.
For a given quantile , the estimate
of
in the model
/* Routine to find regression quantiles */ /* yname: name of dependent variable */ /* y: dependent variable */ /* xname: names of independent variables */ /* X: independent variables */ /* b: estimates */ /* predict: predicted values */ /* error: difference of y and predicted. */ /* q: quantile */ /* */ /* notes: This subroutine finds the estimates b */ /* that minimize */ /* */ /* q * (y - Xb) * e + (1-q) * (y - Xb) * ^e */ /* */ /* where e = ( Xb <= y ). */ /* */ /* This subroutine follows the approach given in: */ /* */ /* Koenker, R. and G. Bassett (1978). Regression */ /* quantiles. Econometrica. Vol. 46. No. 1. 33-50. */ /* */ /* Basssett, G. and R. Koenker (1982). An empirical */ /* quantile function for linear models with iid errors. */ /* JASA. Vol. 77. No. 378. 407-415. */ /* */ /* When q = .5 this is equivalent to minimizing the sum */ /* of the absolute deviations, which is also known as */ /* L1 regression. Note that for L1 regression, a faster */ /* and more accurate algorithm is available in the SAS/IML */ /* routine LAV, which is based on the approach given in: */ /* */ /* Madsen, K. and Nielsen, H. B. (1993). A finite */ /* smoothing algorithm for linear L1 estimation. */ /* SIAM J. Optimization, Vol. 3. 223-235. */ /*---------------------------------------------------------*/ start rq( yname, y, xname, X, b, predict, error, q); bound=1.0e10; coef = X`; m = nrow(coef); n = ncol(coef);
/*-----------------build rhs and bounds--------------------*/ e = repeat(1,1,n)`; r = {0 0} || ((1-q)*coef*e)`; sign = repeat(1,1,m); do i=1 to m; if r[2+i] < 0 then do; sign[i] = -1; r[2+i] = -r[2+i]; coef[i,] = -coef[i,]; end; end; l = repeat(0,1,n) || repeat(0,1,m) || -bound || -bound ; u = repeat(1,1,n) || repeat(.,1,m) || { . . } ; /*-------------build coefficient matrix and basis----------*/ a = ( y` || repeat(0,1,m) || { -1 0 } ) // ( repeat(0,1,n) || repeat(-1,1,m) || { 0 -1 } ) // ( coef || I(m) || repeat(0,m,2)) ; basis = n+m+2 - (0:n+m+1); /*----------------find a feasible solution-----------------*/ call lp(rc,p,d,a,r,,u,l,basis); /*----------------find the optimal solution----------------*/ l = repeat(0,1,n) || repeat(0,1,m) || -bound || {0} ; u = repeat(1,1,n) || repeat(0,1,m) || { . 0 } ; call lp(rc,p,d,a,r,n+m+1,u,l,basis); /*---------------- report the solution-----------------------*/ variable = xname`; b=d[3:m+2]; do i=1 to m; b[i] = b[i] * sign[i]; end; predict = X*b; error = y - predict; wsum = sum ( choose(error<0 , (q-1)*error , q*error) ); print ,,'Regression Quantile Estimation' , 'Dependent Variable: ' yname , 'Regression Quantile: ' q , 'Number of Observations: ' n , 'Sum of Weighted Absolute Errors: ' wsum , variable b, X y predict error; finish rq;
The following example uses data on the United States population from 1790 to 1970:
z = { 3.929 1790 , 5.308 1800 , 7.239 1810 , 9.638 1820 , 12.866 1830 , 17.069 1840 , 23.191 1850 , 31.443 1860 , 39.818 1870 , 50.155 1880 , 62.947 1890 , 75.994 1900 , 91.972 1910 , 105.710 1920 , 122.775 1930 , 131.669 1940 , 151.325 1950 , 179.323 1960 , 203.211 1970 }; y=z[,1]; x=repeat(1,19,1)||z[,2]||z[,2]##2; run rq('pop',y,{'intercpt' 'year' 'yearsq'},x,b1,pred,resid,.5);The results are shown in Output 8.11.1. Output 8.11.1: Regression Quantiles: Results
The L1 norm (when ) tends to cause the fit
to be better at more points at the expense of
causing some points to fit worse. Consider the following plot of
the residuals against the least squares residuals:
/* Compare L1 residuals with least squares residuals */ /* Compute the least squares residuals */ resid2=y-x*inv(x`*x)*x`*y; /* x axis of plot */ xx=repeat(x[,2] ,3,1); /* y axis of plot */ yy=resid//resid2//repeat(0,19,1); /* plot character*/ id=repeat('1',19,1)//repeat('2',19,1)//repeat('-',19,1); call pgraf(xx||yy,id,'Year','Residual', '1=L(1) residuals, 2=least squares residual');
The results are shown in Output 8.11.2.
Output 8.11.2: Graph: L1 Residuals vs. Least Squares Residuals
|
When , the results of this module can be compared with the
results of the LAV routine, as follows:
b0 = {1 1 1}; /* initial value */ optn = j(4,1,.); /* options vector */ optn[1]= .; /* gamma default */ optn[2]= 5; /* print all */ optn[3]= 0; /* McKean-Schradar variance */ optn[4]= 1; /* convergence test */ call LAV(rc, xr, x, y, b0, optn);
Copyright © 2009 by SAS Institute Inc., Cary, NC, USA. All rights reserved.