2 Pages

universitime

Course: MCLARKE 3, Fall 2009
School: Oakland University
Rating:
 
 
 
 
 

Word Count: 1511

Document Preview

multicollinearity Multicollinearity What is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then 2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X k sbk = = 2 s 1 RYH *y Tolk * ( N K 1) s X k = Vif k * 2 s 1 RYH *y ( N K 1) s X k The bigger R2XkGk is (i.e. the more highly correlated Xk is with the other IVs in the...

Register Now

Unformatted Document Excerpt

Coursehero >> Michigan >> Oakland University >> MCLARKE 3

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
multicollinearity Multicollinearity What is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then 2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X k sbk = = 2 s 1 RYH *y Tolk * ( N K 1) s X k = Vif k * 2 s 1 RYH *y ( N K 1) s X k The bigger R2XkGk is (i.e. the more highly correlated Xk is with the other IVs in the model), the bigger the standard error will be. Indeed, if Xk is perfectly correlated with the other IVs, the standard error will equal infinity. This is referred to as the problem of multicollinearity. The problem is that, as the Xs become more highly correlated, it becomes more and more difficult to determine which X is actually producing the effect on Y. Also, recall that 1 - R2XkGk is referred to as the Tolerance of Xk. A tolerance close to 1 means there is little multicollinearity, whereas a value close to 0 suggests that multicollinearity may be a threat. The reciprocal of the tolerance is known as the Variance Inflation Factor (VIF). The VIF shows us how much the variance of the coefficient estimate is being inflated by multicollinearity. The square root of the VIF tells you how much larger the standard error is, compared with what it would be if that variable were uncorrelated with the other X variables in the equation. For example, if the VIF for a variable were 9, its standard error would be three times as large as it would be if its VIF was 1. In such a case, the coefficient would have to be 3 times as large to be statistically significant. Causes of multicollinearity Improper use of dummy variables (e.g. failure to exclude one category) Including a variable that is computed from other variables in the equation (e.g. family income = husbands income + wifes income, and the regression includes all 3 income measures) In effect, including the same or almost the same variable twice (height in feet and height in inches; or, more commonly, two different operationalizations of the same identical concept) The above all imply some sort of error on the researchers part. But, it may just be that variables really and truly are highly correlated. MulticollinearityPage 1 Consequences of multicollinearity Even extreme multicollinearity (so long as it is not perfect) does not violate OLS assumptions. OLS estimates are still unbiased and BLUE (Best Linear Unbiased Estimators) Nevertheless, the greater the multicollinearity, the greater the standard errors. When high multicollinearity is present, confidence intervals for coefficients tend to be very wide and tstatistics tend to be very small. Coefficients will have to be larger in order to be statistically significant, i.e. it will be harder to reject the null when multicollinearity is present. Note, however, that large standard errors can be caused by things besides multicollinearity. When two IVs are highly and positively correlated, their slope coefficient estimators will tend to be highly and negatively correlated. When, for example, b1 is greater than 1, b2 will tend to be less than 2. Further, a different sample will likely produce the opposite result. In other words, if you overestimate the effect of one parameter, you will tend to underestimate the effect of the other. Hence, coefficient estimates tend to be very shaky from one sample to the next. Detecting high multicollinearity. Multicollinearity is a matter of degree. There is no irrefutable test that it is or is not a problem. But, there are several warning signals: None of the t-ratios for the individual coefficients is statistically significant, yet the overall F statistic is. If there are several variables in the model, though, and not all are highly correlated with the other variables, this alone may not be enough. You could get a mix of significant and insignificant results, disguising the fact that some coefficients are insignificant because of multicollinearity. Check to see how stable coefficients are when different samples are used. For example, you might randomly divide your sample in two. If coefficients differ dramatically, multicollinearity may be a problem. Or, try a slightly different specification of a model using the same data. See if seemingly innocuous changes (adding a variable, dropping a variable, using a different operationalization of a variable) produce big shifts. In particular, as variables are added, look for changes in the signs of effects (e.g. switches from positive to negative) that seem theoretically questionable. Such changes may make sense if you believe suppressor effects are present, but otherwise they may indicate multicollinearity. Examine the bivariate correlations between the IVs, and look for big values, e.g. .80 and above. However, the problem with this is One IV may be a linear combination of several IVs, and yet not be highly correlated with any one of them Hard to decide on a cutoff point. The smaller the sample, the lower the cutoff point should probably be. MulticollinearityPage 2 Ergo, examining the tolerances or VIFs is probably superior to examining the bivariate correlations. Indeed, you may want to actually regress each X on all of the other Xs, to help you pinpoint where the problem is. A commonly given rule of thumb is that VIFs of 10 or higher (or equivalently, tolerances of .10 or less) may be reason for concern. This is, however, just a rule of thumb; Allison says he gets concerned when the VIF is over 2.5 and the tolerance is under .40. In SPSS, you get the tolerances and vifs by adding either the VIF or COLLIN parameter ro the regression command; in Stata you can use the vif command after running a regression, or you can use the collin command (written by Philip Ender at UCLA). Look at the correlations of the estimated coefficients (not the variables). High correlations between pairs of coefficients indicate possible collinearity problems. In SPSS, you can get this via the BCOV parameter; in Stata you get it by running the vce, corr command after a regression. Sometimes eigenvalues, condition indices and the condition number will be referred to when examining multicollinearity. While all have their uses, I will focus on the condition number. The condition number () is the condition index with the largest value; it equals the square root of the largest eigenvalue (max) divided by the smallest eigenvalue (min), i.e. = max min When there is no collinearity at all, the eigenvalues, condition indices and condition number will all equal one. As collinearity increases, eigenvalues will be both greater and smaller than 1 (eigenvalues close to zero indicate a multicollinearity problem), and the condition indices and the condition number will increase. An informal rule of thumb is that if the condition number is 15, multicollinearity is a concern; if it is greater than 30 multicollinearity is a very serious concern. (But again, these are just informal rules of thumb.) In SPSS, you get these values by adding the COLLIN parameter to the Regression command; in Stata you can use collin. CAUTION: There are different ways of computing eigenvalues, and they lead to different results. One common approach is to center the IVs first, i.e. subtract the mean from each variable. (Equivalent approaches analyze the standardized variables or the correlation matrix.) In other instances, the variables are left uncentered. SPSS takes the uncentered approach, whereas Statas collin can do it both ways. If you center the variables yourself, then both approaches will yield identical results. If your variables have ratio-level measurement (i.e. have a true zero point) then not centering may make sense; if they dont have ratio-level measurement, then I think it makes more sense to center. In any event, be aware that authors handle this in different ways, and there is sometimes controversy over which approach is most appropriate. I have to admit that I dont fully understand all these issues myself; and I have not seen the condition number and related statistics widely used in Sociology, although they might enjoy wider use in other fields. See Belsley, Kuh and Welschs Regression Diagnostics: Identifying Influential Data and Sources of Collinearity (1980) for an in-depth discussion. MulticollinearityPage 3 Dealing with multicollinearity Make sure you havent made any flagrant errors, e.g. improper use of computed or dummy variables. Increase the sample size. This will usually decrease standard errors, and make it less likely that results are some sort of sampling fluke. Use information from prior research. Suppose previous studies have shown that 1 = 2*2. Then, create a new variable, X3 = 2X1 + X2. Then, regress Y on X3 instead of on X1 and X2. b3 is then your estimate of 2 and 2b3 is your estimate of 1. Use factor analysis or some other means to create a scale from the Xs. In fact, you should do this anyway if you feel the Xs are simply different operationalizations of the same concept (e.g. several measures might tap the same personality trait). In SPSS you might use the FACTOR or RELIABILITY commands; in Stata relevant commands include factor and alpha. Use joint hypothesis testsinstead of doing t-tests for individual coefficients, do an F test for a group of coefficients (i.e. an incremental F test). So, if X1, X2, and X3 are highly correlated, do an F test of the hypothesis that 1 = 2 = 3 = 0. It is sometimes suggested that you drop the offending variable. If you originally added the variable just to see what happens, dropping may be a fine idea. But, if the variable really belongs in the model, this can lead to specification error, which can be even worse than multicollinearity. It may be that the best thing to do is simply to realize that multicollinearity is present, and be aware of its consequences. SPSS Example. Consider the following hypothetical example: MATRIX DATA VARIABLES = Rowtype_ Y X1 X2/ FORMAT = FREE full /FILE = INLINE / N = 100. BEGIN DATA. MEAN 12.00 STDDEV 3.00 CORR 1.00 CORR .24 CORR 0.25 END DATA. REGRESSION 10.00 10.00 5.00 5.00 .24 .25 1.00 0.95 0.95 1.00 matrix = in(*) /VARIABLES Y X1 X2 /DESCRIPTIVES /STATISTICS DEF TOL BCOV COLLIN TOL /DEPENDENT Y /method ENTER X1 X2 . MulticollinearityPage 4 Regression Descriptive Statistics Y X1 X2 Mean 12.000000 10.000000 10.000000 Std. Deviation 3.0000000 5.0000000 5.0000000 N 100 100 100 Correlations Pearson Correlation Y X1 X2 Y 1.000 .240 .250 X1 .240 1.000 .950 X2 .250 .950 1.000 b Variables Entered/Removed Model 1 Variables Entered a X2, X1 Variables Removed . Method Enter a. All requested variables entered. b. Dependent Variable: Y Model Summary Model 1 R R Square .250a .063 Adjusted R Square .043 Std. Error of the Estimate 2.9344301 a. Predictors: (Constant), X2, X1 ANOVAb Model 1 Sum of Squares 55.745 835.255 891.000 df 2 97 99 Mean Square 27.872 8.611 F 3.237 Sig. .044a Regression Residual Total a. Predictors: (Constant), X2, X1 b. Dependent Variable: Y Coefficientsa Unstandardized Coefficients B Std. Error 10.492 .666 .015 .189 .135 .189 Standardized Coefficients .026 Beta .226 Collinearity Statistics Tolerance VIF .098 .098 10.256 10.256 Model 1 (Constant) X1 X2 t 15.765 .081 .717 Sig. .000 .935 .475 a. Dependent Variable: Y MulticollinearityPage 5 a Coefficient Correlations Model 1 Correlations Covariances X2 X1 X2 X1 X2 1.000 -.950 .036 -.034 X1 -.950 1.000 -.034 .036 a. Dependent Variable: Y a Collinearity Diagnostics Model 1 Dimension 1 2 3 Eigenvalue 2.855 .136 .010 Condition Index 1.000 4.589 16.964 Variance Proportions (Constant) X1 X2 .02 .00 .00 .98 .02 .02 .00 .98 .98 a. Dependent Variable: Y Note that X1 and X2 are very highly correlated (r12 = .95). Of course, the tolerances for these variables are therefore also very low and the VIFs exceed our rule of thumb of 10. The t-statistics for the coefficients are not significant. Yet, the overall F is significant. Even though both IVs have the same standard deviations and almost identical correlations with Y, their estimated effects are radically different. The correlation between the coefficients for X1 and X2 is very high, -.95 The condition number (SPSS does not explicitly report it, but it is the largest of the condition indices) is 16.964. This falls within our rule of thumb range for concern. Again, this is based on the uncentered variables; if I thought centering was more appropriate I would just need to change the means of X1 and X2 to 0. (Doing so produces a condition number of 6.245, as Stata confirms below.) The sample size is fairly small (N = 100). All of these are warning signs of multicollinearity. A change of as little as one or two cases could completely reverse the estimates of the effects. MulticollinearityPage 6 Stata example. It is easy to do the same analysis as above using Stata. We use the corr, regress, vif, vce, and collin commands. . use http://www.nd.edu/~rwilliam/stats2/statafiles/multicoll.dta, clear . corr y x1 x2, means (obs=100) Variable | Mean Std. Dev. Min Max -------------+---------------------------------------------------y| 12 3 4.899272 18.91652 x1 | 10 5 -1.098596 23.10749 x2 | 10 5 -.0284863 23.72392 | y x1 x2 -------------+--------------------------y| 1.0000 x1 | 0.2400 1.0000 x2 | 0.2500 0.9500 1.0000 . reg y x1 x2, beta Number of obs F( 2, 97) Prob > F R-squared Adj R-squared Root MSE = = = = = = 100 3.24 0.0436 0.0626 0.0432 2.9344 Source | SS df MS -------------+-----------------------------Model | 55.7446181 2 27.872309 Residual | 835.255433 97 8.61088075 -------------+-----------------------------Total | 891.000051 99 9.00000051 -----------------------------------------------------------------------------y| Coef. Std. Err. t P>|t| Beta -------------+---------------------------------------------------------------x1 | .0153846 .1889008 0.08 0.935 .025641 x2 | .1353847 .1889008 0.72 0.475 .2256411 _cons | 10.49231 .6655404 15.77 0.000 . -----------------------------------------------------------------------------. vif Variable | VIF 1/VIF -------------+---------------------x1 | 10.26 0.097500 x2 | 10.26 0.097500 -------------+---------------------Mean VIF | 10.26 . vce, corr | x1 x2 _cons -------------+--------------------------x1 | 1.0000 x2 | -0.9500 1.0000 _cons | -0.1419 -0.1419 1.0000 MulticollinearityPage 7 . * Use collin with uncentered data, the default. (Same as SPSS) . collin x1 x2 if !missing(y) Collinearity Diagnostics SQRT RVariable VIF VIF Tolerance Squared ---------------------------------------------------x1 10.26 3.20 0.0975 0.9025 x2 10.26 3.20 0.0975 0.9025 ---------------------------------------------------Mean VIF 10.26 Cond Eigenval Index --------------------------------1 2.8546 1.0000 2 0.1355 4.5894 3 0.0099 16.9635 --------------------------------Condition Number 16.9635 Eigenvalues & Cond Index computed from scaled raw sscp (w/ intercept) Det(correlation matrix) 0.0975 . * Use collin with centered data using the corr option . collin x1 x2 if !missing(y), corr Collinearity Diagnostics SQRT RVariable VIF VIF Tolerance Squared ---------------------------------------------------x1 10.26 3.20 0.0975 0.9025 x2 10.26 3.20 0.0975 0.9025 ---------------------------------------------------Mean VIF 10.26 Cond Eigenval Index --------------------------------1 1.9500 1.0000 2 0.0500 6.2450 --------------------------------Condition Number 6.2450 Eigenvalues & Cond Index computed from deviation sscp (no intercept) Det(correlation matrix) 0.0975 collin is a user-written command; type findit collin to locate it and install it on your machine. Note that, with the collin command, you only give the names of the X variables, not the Y. If Y has missing data, you have to make sure that the same cases are analyzed by the collin command that were analyzed by the regress command. There are various ways of doing this. By adding the optional if !missing(y) I told Stata to only analyze those cases that were NOT missing on Y. By default, collin computed the condition number using the raw data (same as SPSS); adding the corr parameter makes it compute the condition number using centered data. [NOTE: coldiag2 is yet another Stata routine that can give you even more information concerning eigenvalues, condition indices, etc.; type findit coldiag2 to locate and install it.] MulticollinearityPage 8 Incidentally, assuming X1 and X2 are measured the same way (e.g. years, dollars, whatever) a possible solution we might consider is to simply add X1 and X2 together. This would make even more sense if we felt X1 and X2 were alternative measures of the same thing. Adding them could be legitimate if (despite the large differences in their estimated effects) their two effects did not significantly differ from each other. In Stata, we can easily test this. . test x1 = x2 ( 1) x1 - x2 = 0 F( 1, 97) = Prob > F = 0.10 0.7484 Given that the effects do not significantly differ, we can do the following: . gen x1plusx2 = x1 + x2 . reg y x1plusx2 Source | SS df MS -------------+-----------------------------Model | 54.8536183 1 54.8536183 Residual | 836.146432 98 8.53210645 -------------+-----------------------------Total | 891.000051 99 9.00000051 Number of obs F( 1, 98) Prob > F R-squared Adj R-squared Root MSE = = = = = = 100 6.43 0.0128 0.0616 0.0520 2.921 -----------------------------------------------------------------------------y| Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------x1plusx2 | .0753846 .0297309 2.54 0.013 .0163846 .1343846 _cons | 10.49231 .6624892 15.84 0.000 9.17762 11.807 ------------------------------------------------------------------------------ The multicollinearity proble...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Oakland University - DCHEN - 2
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - JGALLAG - 3
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - P - 221
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - YZHENG - 1
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 3
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 2
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 4
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 9
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 2
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 2
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 2
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 5
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 7
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - HW - 5
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - M - 13150
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - MGILBER - 1
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Oakland University - ARTTHEOSPR - 07
MulticollinearityWhat multicollinearity is. Let H = the set of all the X (independent) variables. Let Gk = the set of all the X variables except Xk. The formula for standard errors is then2 s 1 RYH *y 2 (1 RX k Gk ) * ( N K 1) s X ksbk ==
Idaho - GEOL - 101
Geol 101: Physical GeologySpring 2006EXAM 1Write your name out in full on the scantron form and fill in the corresponding ovals to spell out your name. Also fill in your student ID number in the space provided. Do not include the dash and do not
UCSD - NODCSD - 2
0 7450040024719 550336262S53450W0365804370305080DS 001370100 003701959-9-9 1984 34 506 34 0056100531 00900009 00000 0361 2 3388 2 907092 01102 9 90382 00010 0361 2 3388 2 9 9 01062 9 90372 00020 0361 2 3388 2 907082 01082 9 90382 00030 0360 2 3388 2
Bethany CA - FOV - 1
<?xml version="1.0" encoding="UTF-8"?> <Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Key>9cc6983665958539196f6fe2209d21718e131262.ppt%3FFCItemID %</Key><RequestId>14BCF43151D003F1</RequestId><HostId>ZaGxFDq4kwyivgN
Bethany CA - FAV - 1
<?xml version="1.0" encoding="UTF-8"?> <Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Key>e316e6042f2dd9aaaeea507f31cbd9b37e69fe12.ppt%3FFCItemID %</Key><RequestId>0AF69305055E0079</RequestId><HostId>FLMNCYJqmYECihX
University of Texas - CI - 06
DataCenter UpdateMath PD Meeting February 12, 2008Active to Date Schools = 1354 Participants = 4343 Districts = 5422008 2009Data Entry for 20072008 and 20082009 will overlap during the summer.Event Entry Will work like Districts,
Maryland - JUNE - 19
525 CDUS41 KLWX 210541 CLIBWI CLIMATE REPORT NATIONAL WEATHER SERVICE BALTIMORE/WASHINGTON 139 AM EDT THU JUN 21 2001 . .THE BALTIMORE CLIMATE SUMMARY FOR 20 JUNE 2001. CLIMATE NORMAL PERIOD 1961 TO 1990 CLIMATE RECORD PERIOD 1870 TO 2000 WEATHER ITE
University of Texas - ACL - 2
Shant writes: "We use non-standard analysis to model two simple dynamic systems. System 1 is described by the equation dx/dt = - x. System 2 is described by the equation dx/dt = - (x ^ N) , for a positive integer N. For each of
Maryland - MYSQL - 51
n= 4871 node), split, n, loss, yval, (yprob) * denotes terminal node1) root 4871 75 pass (0.01539725 0.98460275) 2) sql_mode=ANSI 75 0 fail (1.00000000 0.00000000) * 3) sql_mode=NULL,STRICT_ALL_TABLES,TRADITIONAL 4796 0 pass (0.0000
Maryland - MYSQL - 51
n= 456 node), split, n, loss, yval, (yprob) * denotes terminal node1) root 456 110 fail (0.7587719 0.2412281) 2) sql_mode=ANSI,STRICT_ALL_TABLES,TRADITIONAL 346 0 fail (1.0000000 0.0000000) * 3) sql_mode=NULL 110 0 pass (0.0000000
University of Texas - L - 397
iLIS 397.1 Introduction to Research in Library and Information ScienceSummer, 2003 Thoughtful Thursday: Day 14R. G. Bias | School of Information | SZB 562BB | Phone: 512 471 7046 | rbias@ischool.utexas.edu1Limitations of t tests Can compare
Maryland - ASTRO - 131
NUM AGE LOG L LOG G LOG TEF MASS LOG K2 LOG K3 LOG K4 ALPHA BETA BETA1 uu uv ub uy uU uB uV uR uI uJ uH uK Mv Mbol U-B B-V u-b b-y 1 3.50
Maryland - FRANCE - 2007
Image: ./France2007/Birds/ByName/Egret,Little08.jpg Format: JPEG (Joint Photographic Experts Group JFIF format) Geometry: 690x460 Class: DirectClass Colorspace: RGB Type: TrueColor Depth: 8 bits Channel depth: Red: 8-bits Green:
UNLV - CH - 12
Chapter TwelveSaturated HydrocarbonsSaturated Hydrocarbons cont'dCO 12.1 Bill Ross/CORBISChapter 12 | Slide 2 of XXSaturated Hydrocarbons cont'd Fig. 12.1 Sheer numbers is one reason why organic chemistry is a separate field of chemical
University of Texas - PSY - 394
A short Chinese man with a cheap black watch is trying to hit on a taller white woman who looks like she is showing the man how to do something naughty. The man has no chance with her and that is what the people behind her are laughing about. They ar
Virginia Tech - MASSIMI - 2
Bridge for Handhelds - Design Notes- Generally speaking, it is best to allow the user total flexibility, while at the same time minimizing the amount of input necessary to complete an arbitrary task. This is especially true in the case of textual i
Virginia Tech - INFOMACV - 15
Subject: Info-Mac Digest V15 #276MIME-Version: 1.0Content-Type: multipart/mixed; boundary="Info-Mac-Digest"-Info-Mac-DigestInfo-Mac Digest Mon, 15 Dec 97 Volume 15 : Issue 276Today's Topics: [*] PictFader 1.0 - PICT d
Virginia Tech - ETEXT - 03
*This is a COPYRIGHTED Project Gutenberg Etext, Details Below*The Project Gutenberg Etext of Jenseits der Schriftkultur, by Mihai Nadin#3 in our series by Mihai NadinCopyright laws are changing all over the world. Be sure to check thecopyright
Virginia Tech - ETEXT - 05
Project Gutenberg's The Three Cities Trilogy: Paris, Vol. 3, by Zola#32 in our series by Emile ZolaCopyright laws are changing all over the world. Be sure to check thecopyright laws for your country before downloading or redistributingthis or an
CSU Channel Islands - CONTACT - 14
AAR2YBL074Cmolecular_function unknownassembly of spliceosomal tri-snRNPsnRNP U5YDR283CYDL208WYHR165Ccomponent of free U5 snRNP and recycling factor for U4/U6.U5 tri-snRNP complex; (originally describegrowth defect and defect in splicing th
LSU - WW - 571949
WAVEWATCH III 20050827 150000 -100.00 -60.00 401 5.00 50.00 451 .t 0.0100 s 1 2 (1X,32I4) -999 -999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999-999 -999
CSU Channel Islands - EXAMPLE - 1
Bengals receiver Carl Pickens criticized owner andgeneral manager Mike Brown, who last week decided to keep coachBruce Coslet for at least one more season.`I don't understand it,' Pickens said. `We're trying to win.We're trying to turn this th
University of Texas - CS - 383
Brief description of Matlab files:1. correlationLogDet.mThis is the algorithm for nearest correlation matrix in Burg matrix divergence. It uses the O(n^2) update.2. correlationLogDetlowrank.mThis is the low-rank update algorithm for Burg mat
University of Texas - PSY - 394
This is the funniest picture, I had to send it to you. The other day we were all at Jonathan's party and one of his friends was walking around taking candid pictures. This is on of the funniest one's taken. It is a picture of Betty and Young havin
University of Texas - PSY - 394
On the left side of the picture, there is a woman with shoulder length brown hair. She is wearing a blue shirt that looks denim, and her sleeves are pulled up about 4 inches above her wrists. In her left hand she is holding a glass that is 3/4 full
UCSD - P - 16
P16C bathymetry:(TUNES 3)ASCII navigation and bathymetry data file was obtained from Stu Smith at the SIO Geological Data Center 9/22/94, in his own format,including both uncorrected and Carter-corrected depths.Expocode: 31WTTUNES_3Chief Scie
UCSD - COGS - 96
%TI Fodor's New Theory Of Content And Computation%AU Andrew Brook %AU Robert J. Stainton%AB In his new book, "The Elm and the Expert", Fodor attempts to reconcilethe computational model of human cognition with information-theoreticsemantics, t