The Truth About Linear Regression

Total Page:16

File Type:pdf, Size:1020Kb

The Truth About Linear Regression 14:51 Friday 18th January, 2013 Chapter 2 The Truth about Linear Regression We need to say some more about how linear regression, and especially about how it really works and how it can fail. Linear regression is important because 1. it’s a fairly straightforward technique which often works reasonably well for prediction; 2. it’s a simple foundation for some more sophisticated techniques; 3. it’s a standard method so people use it to communicate; and 4. it’s a standard method so people have come to confuse it with prediction and even with causal inference as such. We need to go over (1)–(3), and provide prophylaxis against (4). A very good resource on regression is Berk (2004). It omits technical details, but is superb on the high-level picture, and especially on what must be assumed in order to do certain things with regression, and what cannot be done under any assumption. 2.1 Optimal Linear Prediction: Multiple Variables We have a response variable Y and a p-dimensional vector of predictor variables or features X~ . To simplify the book-keeping, we’ll take these to be centered — we can al- ways un-center them later. We would like to predict Y using X~ . We saw last time that the best predictor we could use, at least in a mean-squared sense, is the conditional expectation, r (~x)=E Y X~ = ~x (2.1) | î ó Instead of using the optimal predictor r (~x), let’s try to predict as well as possible while using only a linear function of ~x, say ~x β. This is not an assumption about the · 36 37 2.1. OPTIMAL LINEAR PREDICTION: MULTIPLE VARIABLES world, but rather a decision on our part; a choice, not a hypothesis. This decision can be good — ~x β could be a close approximation to r (~x) — even if the linear hypothesis is wrong. · One reason to think it’s not a crazy decision is that we may hope r is a smooth function. If it is, then we can Taylor expand it about our favorite point, say ~u: p @ r 2 r (~x)=r (~u)+ (xi ui )+O( ~x ~u ) (2.2) @ x ! − k − k i=1 i ~u X or, in the more compact vector-calculus notation, 2 r (~x)=r (~u)+(~x ~u) r (~u)+O( ~x ~u ) (2.3) − ·r k − k 2 If we only look at points ~x which are close to ~u, then the remainder terms O( ~x ~u ) are small, and a linear approximation is a good one1. k − k Of course there are lots of linear functions so we need to pick one, and we may as well do that by minimizing mean-squared error again: 2 MSE(β)=E Y X~ β (2.4) − · ïÄ ä ò Going through the optimization is parallel to the one-dimensional case (see last chap- ter), with the conclusion that the optimal β is 1 ~ β = v− Cov X ,Y (2.5) ~ î ó ~ where v is the covariance matrix of X , i.e., vij = Cov Xi ,Xj , and Cov X ,Y is the vector of covariances between the predictor variablesî and Yó, i.e. Cov îX~ ,Y ó i = Cov Xi ,Y . î ó Multiple regression would be a lot simpler if we could just do a simple regression ⇥ ⇤ for each predictor variable, and add them up; but really, this is what multiple regres- sion does, just in a disguised form. If the input variables are uncorrelated, v is diagonal 1 (vij = 0 unless i = j), and so is v− . Then doing multiple regression breaks up into a sum of separate simple regressions across each input variable. When the input vari- 1 ables are correlated and v is not diagonal, we can think of the multiplication by v− as de-correlating X~ — applying a linear transformation to come up with a new set of inputs which are uncorrelated with each other.2 Notice: β depends on the marginal distribution of X~ (through the covariance matrix v). If that shifts, the optimal coefficients β will shift, unless the real regression function is linear. 1 2 If you are not familiar with the big-O notation like O( ~x ~u ), now would be a good time to read Appendix B. k − k 2If Z~ is a random vector with covariance matrix I , then wZ~ is a random vector with covariance matrix wT w. Conversely, if we start with a random vector X~ with covariance matrix v, the latter has a “square 1/2 1/2 1/2 1/2 ~ root” v (i.e., v v = v), and v− X will be a random vector with covariance matrix I. When we ~ 1 ~ ~ 1/2 1/2 ~ write our predictions as X v− Cov X ,Y , we should think of this as X v− v− Cov X ,Y .We 1/2 use one power of v− to transformî theó input features into uncorrelatedÄ variablesäÄ beforeî takingóä their correlations with the response, and the other power to decorrelate X~ . 14:51 Friday 18th January, 2013 2.1. OPTIMAL LINEAR PREDICTION: MULTIPLE VARIABLES 38 2.1.1 Collinearity 1 ~ The formula β = v− Cov X ,Y makes no sense if v has no inverse. This will happen if, and only if, the predictorî ó variables are linearly dependent on each other — if one of the predictors is really a linear combination of the others. Then (as we learned in linear algebra) the covariance matrix is of less than “full rank” (i.e., “rank deficient”) and it doesn’t have an inverse. So much for the algebra; what does that mean statistically? Let’s take an easy case where one of the predictors is just a multiple of the others — say you’ve included people’s weight in pounds (X1) and mass in kilograms (X2), so X1 = 2.2X2. Then if we try to predict Y , we’d have Yˆ = β1X1 + β2X2 + β3X3 + ...+ βp Xp (2.6) p = 0X1 +(2.2β1 + β2)X2 + βi Xi (2.7) i=3 Xp =(β1 + β2/2.2)X1 + 0X2 + βi Xi (2.8) i=3 X p = 2200X1 +(1000 + β1 + β2)X2 + βi Xi (2.9) − i 3 X= In other words, because there’s a linear relationship between X1 and X2, we make the coefficient for X1 whatever we like, provided we make a corresponding adjustment to the coefficient for X2, and it has no effect at all on our prediction. So rather than having one optimal linear predictor, we have infinitely many of them. There are three ways of dealing with collinearity. One is to get a different data set where the predictor variables are no longer collinear. A second is to identify one of the collinear variables (it doesn’t matter which) and drop it from the data set. This can get complicated; principal components analysis (Chapter 17) can help here. Thirdly, since the issue is that there are infinitely many different coefficient vectors which all minimize the MSE, we could appeal to some extra principle, beyond prediction accuracy, to select just one of them, e.g., try to set as many of the coefficients to zero as possible (Appendix E.4.1). 2.1.2 The Prediction and Its Error Once we have coefficients β, we can use them to make predictions for the expected value of Y at arbitrary values of X~ , whether we’ve an observation there before or not. How good are these? If we have the optimal coefficients, then the prediction error will be uncorrelated with the predictor variables: ~ ~ ~ ~ 1 ~ ~ Cov Y X β,X = Cov Y,X Cov X (v− Cov X ,Y ),X (2.10) − · − · î ó î ~ ó 1î ~ î ó ó = Cov Y,X vv− Cov Y,X (2.11) − = 0î ó î ó (2.12) 14:51 Friday 18th January, 2013 39 2.1. OPTIMAL LINEAR PREDICTION: MULTIPLE VARIABLES Moreover, the expected prediction error, averaged over all X~ , will be zero (exercise). In general, however, the conditional expectation of the error is not zero, E Y X~ β X~ = ~x = 0 (2.13) − · | 6 î ó and the conditional variance is not constant in ~x, ~ ~ ~ ~ Var Y X β X = ~x1 = Var Y X β X = ~x2 (2.14) − · | 6 − · | î ó î ó 2.1.3 Estimating the Optimal Linear Predictor To actually estimate β from data, we need to make some probabilistic assumptions about where the data comes from. A quite weak but sufficient assumption is that ~ observations (Xi ,Yi ) are independent for different values of i, with unchanging co- variances. Then if we look at the sample covariances, they will, by the law of large numbers, converge on the true covariances: 1 xT y Cov X~ ,Y (2.15) n ! 1 î ó xT x v (2.16) n ! where as before x is the data-frame matrix with one row for each data point and one column for each feature, and similarly for y. So, by continuity, T 1 T β =(x x)− x y β (2.17) ! and we have a consistent estimator.b On the other hand, we could start with the residual sum of squares n 2 RSS(β) yi ~xi β (2.18) ⌘ i=1 − · X and try to minimize it. The minimizer is the same β we got by plugging in the sample covariances. No probabilistic assumption is needed to minimize the RSS, but it doesn’t let us say anything about the convergence of βb. For that, we do need some assumptions about X~ and Y coming from distributions with unchanging covariances.
Recommended publications
  • LECTURES 2 - 3 : Stochastic Processes, Autocorrelation Function
    LECTURES 2 - 3 : Stochastic Processes, Autocorrelation function. Stationarity. Important points of Lecture 1: A time series fXtg is a series of observations taken sequentially over time: xt is an observation recorded at a specific time t. Characteristics of times series data: observations are dependent, become available at equally spaced time points and are time-ordered. This is a discrete time series. The purposes of time series analysis are to model and to predict or forecast future values of a series based on the history of that series. 2.2 Some descriptive techniques. (Based on [BD] x1.3 and x1.4) ......................................................................................... Take a step backwards: how do we describe a r.v. or a random vector? ² for a r.v. X: 2 d.f. FX (x) := P (X · x), mean ¹ = EX and variance σ = V ar(X). ² for a r.vector (X1;X2): joint d.f. FX1;X2 (x1; x2) := P (X1 · x1;X2 · x2), marginal d.f.FX1 (x1) := P (X1 · x1) ´ FX1;X2 (x1; 1) 2 2 mean vector (¹1; ¹2) = (EX1; EX2), variances σ1 = V ar(X1); σ2 = V ar(X2), and covariance Cov(X1;X2) = E(X1 ¡ ¹1)(X2 ¡ ¹2) ´ E(X1X2) ¡ ¹1¹2. Often we use correlation = normalized covariance: Cor(X1;X2) = Cov(X1;X2)=fσ1σ2g ......................................................................................... To describe a process X1;X2;::: we define (i) Def. Distribution function: (fi-di) d.f. Ft1:::tn (x1; : : : ; xn) = P (Xt1 · x1;:::;Xtn · xn); i.e. this is the joint d.f. for the vector (Xt1 ;:::;Xtn ). (ii) First- and Second-order moments. ² Mean: ¹X (t) = EXt 2 2 2 2 ² Variance: σX (t) = E(Xt ¡ ¹X (t)) ´ EXt ¡ ¹X (t) 1 ² Autocovariance function: γX (t; s) = Cov(Xt;Xs) = E[(Xt ¡ ¹X (t))(Xs ¡ ¹X (s))] ´ E(XtXs) ¡ ¹X (t)¹X (s) (Note: this is an infinite matrix).
    [Show full text]
  • Spatial Autocorrelation: Covariance and Semivariance Semivariance
    Spatial Autocorrelation: Covariance and Semivariancence Lily Housese ­P eters GEOG 593 November 10, 2009 Quantitative Terrain Descriptorsrs Covariance and Semivariogram areare numericc methods used to describe the character of the terrain (ex. Terrain roughness, irregularity) Terrain character has important implications for: 1. the type of sampling strategy chosen 2. estimating DTM accuracy (after sampling and reconstruction) Spatial Autocorrelationon The First Law of Geography ““ Everything is related to everything else, but near things are moo re related than distant things.” (Waldo Tobler) The value of a variable at one point in space is related to the value of that same variable in a nearby location Ex. Moranan ’s I, Gearyary ’s C, LISA Positive Spatial Autocorrelation (Neighbors are similar) Negative Spatial Autocorrelation (Neighbors are dissimilar) R(d) = correlation coefficient of all the points with horizontal interval (d) Covariance The degree of similarity between pairs of surface points The value of similarity is an indicator of the complexity of the terrain surface Smaller the similarity = more complex the terrain surface V = Variance calculated from all N points Cov (d) = Covariance of all points with horizontal interval d Z i = Height of point i M = average height of all points Z i+d = elevation of the point with an interval of d from i Semivariancee Expresses the degree of relationship between points on a surface Equal to half the variance of the differences between all possible points spaced a constant distance apart
    [Show full text]
  • Fast Estimation of the Median Covariation Matrix with Application to Online Robust Principal Components Analysis
    Fast Estimation of the Median Covariation Matrix with Application to Online Robust Principal Components Analysis Hervé Cardot, Antoine Godichon-Baggioni Institut de Mathématiques de Bourgogne, Université de Bourgogne Franche-Comté, 9, rue Alain Savary, 21078 Dijon, France July 12, 2016 Abstract The geometric median covariation matrix is a robust multivariate indicator of dis- persion which can be extended without any difficulty to functional data. We define estimators, based on recursive algorithms, that can be simply updated at each new observation and are able to deal rapidly with large samples of high dimensional data without being obliged to store all the data in memory. Asymptotic convergence prop- erties of the recursive algorithms are studied under weak conditions. The computation of the principal components can also be performed online and this approach can be useful for online outlier detection. A simulation study clearly shows that this robust indicator is a competitive alternative to minimum covariance determinant when the dimension of the data is small and robust principal components analysis based on projection pursuit and spherical projections for high dimension data. An illustration on a large sample and high dimensional dataset consisting of individual TV audiences measured at a minute scale over a period of 24 hours confirms the interest of consider- ing the robust principal components analysis based on the median covariation matrix. All studied algorithms are available in the R package Gmedian on CRAN. Keywords. Averaging, Functional data, Geometric median, Online algorithms, Online principal components, Recursive robust estimation, Stochastic gradient, Weiszfeld’s algo- arXiv:1504.02852v5 [math.ST] 9 Jul 2016 rithm.
    [Show full text]
  • Characteristics and Statistics of Digital Remote Sensing Imagery (1)
    Characteristics and statistics of digital remote sensing imagery (1) Digital Images: 1 Digital Image • With raster data structure, each image is treated as an array of values of the pixels. • Image data is organized as rows and columns (or lines and pixels) start from the upper left corner of the image. • Each pixel (picture element) is treated as a separate unite. Statistics of Digital Images Help: • Look at the frequency of occurrence of individual brightness values in the image displayed • View individual pixel brightness values at specific locations or within a geographic area; • Compute univariate descriptive statistics to determine if there are unusual anomalies in the image data; and • Compute multivariate statistics to determine the amount of between-band correlation (e.g., to identify redundancy). 2 Statistics of Digital Images It is necessary to calculate fundamental univariate and multivariate statistics of the multispectral remote sensor data. This involves identification and calculation of – maximum and minimum value –the range, mean, standard deviation – between-band variance-covariance matrix – correlation matrix, and – frequencies of brightness values The results of the above can be used to produce histograms. Such statistics provide information necessary for processing and analyzing remote sensing data. A “population” is an infinite or finite set of elements. A “sample” is a subset of the elements taken from a population used to make inferences about certain characteristics of the population. (e.g., training signatures) 3 Large samples drawn randomly from natural populations usually produce a symmetrical frequency distribution. Most values are clustered around the central value, and the frequency of occurrence declines away from this central point.
    [Show full text]
  • Covariance of Cross-Correlations: Towards Efficient Measures for Large-Scale Structure
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by RERO DOC Digital Library Mon. Not. R. Astron. Soc. 400, 851–865 (2009) doi:10.1111/j.1365-2966.2009.15490.x Covariance of cross-correlations: towards efficient measures for large-scale structure Robert E. Smith Institute for Theoretical Physics, University of Zurich, Zurich CH 8037, Switzerland Accepted 2009 August 4. Received 2009 July 17; in original form 2009 June 13 ABSTRACT We study the covariance of the cross-power spectrum of different tracers for the large-scale structure. We develop the counts-in-cells framework for the multitracer approach, and use this to derive expressions for the full non-Gaussian covariance matrix. We show that for the usual autopower statistic, besides the off-diagonal covariance generated through gravitational mode- coupling, the discreteness of the tracers and their associated sampling distribution can generate strong off-diagonal covariance, and that this becomes the dominant source of covariance as spatial frequencies become larger than the fundamental mode of the survey volume. On comparison with the derived expressions for the cross-power covariance, we show that the off-diagonal terms can be suppressed, if one cross-correlates a high tracer-density sample with a low one. Taking the effective estimator efficiency to be proportional to the signal-to-noise ratio (S/N), we show that, to probe clustering as a function of physical properties of the sample, i.e. cluster mass or galaxy luminosity, the cross-power approach can outperform the autopower one by factors of a few.
    [Show full text]
  • On the Use of the Autocorrelation and Covariance Methods for Feedforward Control of Transverse Angle and Position Jitter in Linear Particle Beam Accelerators*
    '^C 7 ON THE USE OF THE AUTOCORRELATION AND COVARIANCE METHODS FOR FEEDFORWARD CONTROL OF TRANSVERSE ANGLE AND POSITION JITTER IN LINEAR PARTICLE BEAM ACCELERATORS* Dean S. Ban- Advanced Photon Source, Argonne National Laboratory, 9700 S. Cass Ave., Argonne, IL 60439 ABSTRACT It is desired to design a predictive feedforward transverse jitter control system to control both angle and position jitter m pulsed linear accelerators. Such a system will increase the accuracy and bandwidth of correction over that of currently available feedback correction systems. Intrapulse correction is performed. An offline process actually "learns" the properties of the jitter, and uses these properties to apply correction to the beam. The correction weights calculated offline are downloaded to a real-time analog correction system between macropulses. Jitter data were taken at the Los Alamos National Laboratory (LANL) Ground Test Accelerator (GTA) telescope experiment at Argonne National Laboratory (ANL). The experiment consisted of the LANL telescope connected to the ANL ZGS proton source and linac. A simulation of the correction system using this data was shown to decrease the average rms jitter by a factor of two over that of a comparable standard feedback correction system. The system also improved the correction bandwidth. INTRODUCTION Figure 1 shows the standard setup for a feedforward transverse jitter control system. Note that one pickup #1 and two kickers are needed to correct beam position jitter, while two pickup #l's and one kicker are needed to correct beam trajectory-angle jitter. pickup #1 kicker pickup #2 Beam Fast loop Slow loop Processor Figure 1. Feedforward Transverse Jitter Control System It is assumed that the beam is fast enough to beat the correction signal (through the fast loop) to the kicker.
    [Show full text]
  • Lecture 4 Multivariate Normal Distribution and Multivariate CLT
    Lecture 4 Multivariate normal distribution and multivariate CLT. T We start with several simple observations. If X = (x1; : : : ; xk) is a k 1 random vector then its expectation is × T EX = (Ex1; : : : ; Exk) and its covariance matrix is Cov(X) = E(X EX)(X EX)T : − − Notice that a covariance matrix is always symmetric Cov(X)T = Cov(X) and nonnegative definite, i.e. for any k 1 vector a, × a T Cov(X)a = Ea T (X EX)(X EX)T a T = E a T (X EX) 2 0: − − j − j � We will often use that for any vector X its squared length can be written as X 2 = XT X: If we multiply a random k 1 vector X by a n k matrix A then the covariancej j of Y = AX is a n n matrix × × × Cov(Y ) = EA(X EX)(X EX)T AT = ACov(X)AT : − − T Multivariate normal distribution. Let us consider a k 1 vector g = (g1; : : : ; gk) of i.i.d. standard normal random variables. The covariance of g is,× obviously, a k k identity × matrix, Cov(g) = I: Given a n k matrix A, the covariance of Ag is a n n matrix × × � := Cov(Ag) = AIAT = AAT : Definition. The distribution of a vector Ag is called a (multivariate) normal distribution with covariance � and is denoted N(0; �): One can also shift this disrtibution, the distribution of Ag + a is called a normal distri­ bution with mean a and covariance � and is denoted N(a; �): There is one potential problem 23 with the above definition - we assume that the distribution depends only on covariance ma­ trix � and does not depend on the construction, i.e.
    [Show full text]
  • Lecture 2 Covariance Is the Statistical Measure That Indicates The
    Lecture 2 Covariance is the statistical measure that indicates the interactive risk of a security relative to others in a portfolio of securities. In other words, the way security returns vary with each other affects the overall risk of the portfolio. The covariance between two securities X and Y may be calculated using the following formula: Where: Covxy = Covariance between x and y. Rx = Return of security x. Ry = Return of security y Rx = Expected or mean return of security x. Ry = Expected or mean return of security y. N = Number of observations. Calculation of Covariance Year Rx Deviation R…3 Deviation Product of deviations Rx – Rx y Ry – Ry (Rx – Rx) (Ry – Ry) 1 10 -4 17 5 -20 2 12 -2 13 1 -2 3 16 2 10 -2 -4 4 18 4 8 -4 -16 = -42 / 4 = -10.5 The covariance is a measure of how returns of two securities move together. If the returns of the two securities move in the same direction consistently the covariance would be positive. If the returns of the two securities move in opposite direction consistently the covariance would be negative. If the movements of returns are independent of each other, covariance would be close to zero. Covariance is an absolute measure of interactive risk between two securities. To facilitate comparison, covariance can be standardized. Dividing the covariance between two securities by product of the standard deviation of each security gives such a standardised measure. This measure is called the coefficient of correlation. This may be expressed as: Where Rxy = Coefficient of correlation between x and y Covxy = Covariance between x and y.
    [Show full text]
  • Week 7: Multiple Regression
    Week 7: Multiple Regression Brandon Stewart1 Princeton October 24, 26, 2016 1These slides are heavily influenced by Matt Blackwell, Adam Glynn, Jens Hainmueller and Danny Hidalgo. Stewart (Princeton) Week 7: Multiple Regression October 24, 26, 2016 1 / 145 Where We've Been and Where We're Going... Last Week I regression with two variables I omitted variables, multicollinearity, interactions This Week I Monday: F matrix form of linear regression I Wednesday: F hypothesis tests Next Week I break! I then ::: regression in social science Long Run I probability ! inference ! regression Questions? Stewart (Princeton) Week 7: Multiple Regression October 24, 26, 2016 2 / 145 1 Matrix Algebra Refresher 2 OLS in matrix form 3 OLS inference in matrix form 4 Inference via the Bootstrap 5 Some Technical Details 6 Fun With Weights 7 Appendix 8 Testing Hypotheses about Individual Coefficients 9 Testing Linear Hypotheses: A Simple Case 10 Testing Joint Significance 11 Testing Linear Hypotheses: The General Case 12 Fun With(out) Weights Stewart (Princeton) Week 7: Multiple Regression October 24, 26, 2016 3 / 145 Why Matrices and Vectors? Here's one way to write the full multiple regression model: yi = β0 + xi1β1 + xi2β2 + ··· + xiK βK + ui Notation is going to get needlessly messy as we add variables Matrices are clean, but they are like a foreign language You need to build intuitions over a long period of time (and they will return in Soc504) Reminder of Parameter Interpretation: β1 is the effect of a one-unit change in xi1 conditional on all other xik . We are going to review the key points quite quickly just to refresh the basics.
    [Show full text]
  • Stat 111 Spring 2011 Week 3 Central Limit Theorem, Covariance, T Distribution Presentations 1. Prove the Central Limit Theorem I
    Stat 111 Spring 2011 Week 3 Central Limit Theorem, Covariance, t distribution Presentations 1. Prove The Central Limit Theorem in the case where X1;:::;Xn are i.i.d. random variables, all with mean 0, variance σ2, and MGF M (t). Define S = P X and p x n i Zn = Sn=(σ n). a) Find the MGF for Zn and show that it converges to the MGF for a standard Normal r.v. as n ! 1. That is, show that Zn converges in distribution to N(0; 1). b) The CLT implies that certain distributions will be approximately Normal for large values of certain parameters. Give a list of examples. c) Describe the Normal Quantile Plot for assessing the normality of a set of data values. Use this to demonstrate some of the approximations in part b. 2. The covariance between random variables X and Y is defined as Cov(X; Y ) = σxy = E((X − µx)(Y − µY )) = E(XY ) − E(X)E(Y ): a) Show that, for constants a1; a2; b1 and b2, Cov(a1+b1X; a2+b2Y ) = b1b2Cov(X; Y ). 2 2 b) Show that Var(X + Y ) = σx + σy + 2σxy; and that, more generally, n ! n ! 0 1 X X X Var Xi = Var(Xi) + 2 @ Cov(Xi;Xj)A : i=1 i=1 i<j What is V ar(X − Y )? c) The correlation between X and Y is defined as ρ = σxy : Use the fact that xy σxσy V ar(X +Y ) and V ar(X −Y ) are both non-negative to prove that −1 ≤ ρxy ≤ 1.
    [Show full text]
  • Linear Regression in Matrix Form
    Statistics 512: Applied Linear Models Topic 3 Topic Overview This topic will cover • thinking in terms of matrices • regression on multiple predictor variables • case study: CS majors • Text Example (KNNL 236) Chapter 5: Linear Regression in Matrix Form The SLR Model in Scalar Form iid 2 Yi = β0 + β1Xi + i where i ∼ N(0,σ ) Consider now writing an equation for each observation: Y1 = β0 + β1X1 + 1 Y2 = β0 + β1X2 + 2 . Yn = β0 + β1Xn + n TheSLRModelinMatrixForm Y1 β0 + β1X1 1 Y2 β0 + β1X2 2 . = . + . . . . Yn β0 + β1Xn n Y X 1 1 1 1 Y X 2 1 2 β0 2 . = . + . . . β1 . Yn 1 Xn n (I will try to use bold symbols for matrices. At first, I will also indicate the dimensions as a subscript to the symbol.) 1 • X is called the design matrix. • β is the vector of parameters • is the error vector • Y is the response vector The Design Matrix 1 X1 1 X2 Xn×2 = . . 1 Xn Vector of Parameters β0 β2×1 = β1 Vector of Error Terms 1 2 n×1 = . . n Vector of Responses Y1 Y2 Yn×1 = . . Yn Thus, Y = Xβ + Yn×1 = Xn×2β2×1 + n×1 2 Variance-Covariance Matrix In general, for any set of variables U1,U2,... ,Un,theirvariance-covariance matrix is defined to be 2 σ {U1} σ{U1,U2} ··· σ{U1,Un} . σ{U ,U } σ2{U } ... σ2{ } 2 1 2 . U = . . .. .. σ{Un−1,Un} 2 σ{Un,U1} ··· σ{Un,Un−1} σ {Un} 2 where σ {Ui} is the variance of Ui,andσ{Ui,Uj} is the covariance of Ui and Uj.
    [Show full text]
  • Covariance and Correlation
    – 1 – Will Monroe Lecture Notes #15 CS 109 July 28, 2017 Covariance and Correlation Based on a chapter by Chris Piech Covariance and Correlation Consider the two plots shown below. In both images I have plotted one thousand samples drawn from an underlying joint distribution. Clearly the two distributions are different. However, the mean and variance are the same in both the x and the y dimension. What is different? Covariance is a quantitative measure of the extent to which the deviation of one variable from its mean matches the deviation of the other from its mean. It is a mathematical relationship that is defined as: Cov(X; Y ) = E[(X − E[X])(Y − E[Y])] The meaning of this mathematical definition may not be obvious at a first glance. If X and Y are both above their respective means, or if X and Y are both below their respective means, the expression inside the outer expectation will be positive. If one is above its mean and the other is below, the term is negative. If this expression is positive on average, the two random variables will have a positive correlation. We can rewrite the above equation to get an equivalent equation: Cov(X; Y ) = E[XY] − E[Y]E[X] Using this equation (and the fact that the expectation of the product of two independent random variables is equal to the product of the expectations) is it easy to see that if two random variables are independent their covariance is 0. The reverse is not true in general: if the covariance of two random variables is 0, they can still be dependent! – 2 – Properties of Covariance Say that X and Y are arbitrary random variables: Cov(X; Y ) = Cov(Y; X) Cov(X; X) = E[X 2] − E[X]E[X] = Var(X) Cov(aX + b; Y ) = aCov(X; Y ) Let X = X1 + X2 + ··· + Xn and let Y = Y1 + Y2 + ··· + Ym.
    [Show full text]