Regression analysis

Regression analysis

In statistics, regression analysis is a collective name for techniques for the modeling and analysis of numerical data consisting of values of a dependent variable (response variable) and of one or more independent variables (explanatory variables). The dependent variable in the regression equation is modeled as a function of the independent variables, corresponding parameters ("constants"), and an "error term". The error term is treated as a "random variable". It represents unexplained variation in the dependent variable. The parameters are estimated so as to give a "best fit" of the data. Most commonly the best fit is evaluated by using the least squares method, but other criteria have also been used.

Regression can be used for prediction (including forecasting of time-series data), inference, hypothesis testing, and modeling of causal relationships. These uses of regression rely heavily on the underlying assumptions being satisfied. Regression analysis has been criticized as being misused for these purposes in many cases where the appropriate assumptions cannot be verified to hold.Richard A. Berk, "Regression Analysis: A Constructive Critique", Sage Publications (2004)] [David A. Freedman, "Statistical Models: Theory and Practice", Cambridge University Press (2005)] One factor contributing to the misuse of regression is that it can take considerably more skill to critique a model than to fit a model. [ [http://links.jstor.org/sici?sici=0081-1750%281982%2913%3C313%3ACAIAIR%3E2.0.CO%3B2-3] R. Dennis Cook; Sanford Weisberg "Criticism and Influence Analysis in Regression", "Sociological Methodology", Vol. 13. (1982), pp. 313-361.]

History of regression analysis

The earliest form of regression was the method of least squares, which was published by Legendre in 1805,A.M. Legendre. "Nouvelles méthodes pour la détermination des orbites des comètes" (1805). “Sur la Méthode des moindres quarrés” appears as an appendix.] and by Gauss in 1809.C.F. Gauss. "Theoria Motus Corporum Coelestium in Sectionibus Conicis Solem Ambientum". (1809)] The term “least squares” is from Legendre’s term, "moindres carrés". However, Gauss claimed that he had known the method since 1795.

Legendre and Gauss both applied the method to the problem of determining, from astronomical observations, the orbits of bodies about the Sun. Euler had worked on the same problem (1748) without success.Fact|date=January 2007 Gauss published a further development of the theory of least squares in 1821,C.F. Gauss. "Theoria combinationis observationum erroribus minimis obnoxiae". (1821/1823)] including a version of the Gauss–Markov theorem.

The term "regression" was coined in the nineteenth century to describe a biological phenomenon, namely that the progeny of exceptional individuals tend on average to be less exceptional than their parents and more like their more distant ancestors. Francis Galton, a cousin of Charles Darwin, studied this phenomenon and applied the slightly misleading term "regression towards mediocrity" to it. For Galton, regression had only this biological meaning, but his work [Francis Galton. "Typical laws of heredity", Nature 15 (1877), 492-495, 512-514, 532-533. "(Galton uses the term "reversion" in this paper, which discusses the size of peas.)"; Francis Galton. Presidential address, Section H, Anthropology. (1885) "(Galton uses the term "regression" in this paper, which discusses the height of humans.)"] was later extended by Udny Yule and Karl Pearson to a more general statistical context. [G. Udny Yule. "On the Theory of Correlation", J. Royal Statist. Soc., 1897, p. 812-54. Karl Pearson, G. U. Yule, Norman Blanchard, and Alice Lee. "The Law of Ancestral Heredity", "Biometrika" (1903). In the work of Yule and Pearson, the joint distribution of the response and explanatory variables is assumed to be Gaussian. This assumption was weakened by R.A. Fisher in his works of 1922 and 1925 (R.A. Fisher, "The goodness of fit of regression formulae, and the distribution of regression coefficients", J. Royal Statist. Soc., 85, 597-612 from 1922 and "Statistical Methods for Research Workers" from 1925). Fisher assumed that the conditional distribution of the response variable is Gaussian, but the joint distribution need not be. In this respect, Fisher's assumption is closer to Gauss's formulation of 1821.] At the present time, the term "regression" is often synonymous with "least squares curve fitting".

Underlying assumptions

Classical assumptions for regression analysis include:
*The sample must be representative of the population for the inference prediction.
*The error is assumed to be a random variable with a mean of zero conditional on the explanatory variables.
*The independent variables are error-free. If this is not so, modeling may be done using errors-in-variables model techniques.
* The predictors must be linearly independent, i.e. it must not be possible to express any predictor as a linear combination of the others. See Multicollinearity.
* The errors are uncorrelated, that is, the variance-covariance matrix of the errors is diagonal and each non-zero element is the variance of the error.
*The variance of the error is constant across observations (homoscedasticity). If not, weighted least squares or other methods might be used.These are sufficient (but not all necessary) conditions for the least-squares estimator to possess desirable properties, in particular, these assumptions imply that the parameter estimates will be unbiased, consistent, and efficient in the class of linear unbiased estimators. Many of these assumptions may be relaxed in more advanced treatments.

Linear regression

In linear regression, the model specification is that the dependent variable, y_i is a linear combination of the "parameters" (but need not be linear in the "independent variables"). For example, in simple linear regression for modeling N data points there is one independent variable: x_i , and two parameters, eta_0 and eta_1: :straight line: y_i=eta_0 +eta_1 x_i +epsilon_i,quad i=1,dots,N!

In multiple linear regression, there are several independent variables or functions of independent variables. For example, adding a term in "xi"2 to the preceding regression gives::parabola: y_i=eta_0 +eta_1 x_i +eta_2 x_i^2+epsilon_i, i=1,dots,N!This is still linear regression; although the expression on the right hand side is quadratic in the independent variable x_i, it is linear in the parameters eta_0, eta_1 and eta_2.

In both cases, epsilon_i is an error term and the subscript i indexes a particular observation. Given a random sample from the population, we estimate the population parameters and obtain the sample linear regression model: y_i = widehat{eta}_0 + widehat{eta}_1 X_i + e_i The term e_i is the residual, e_i = y_i - widehat{y}_i . One method of estimation is ordinary least squares. This method obtains parameter estimates that minimize the sum of squared residuals, SSE::SSE=sum_{i=1}^{N}e_i^2Minimization of this function results in a set of normal equations, a set of simultaneous linear equations in the parameters, which are solved to yield the parameter estimators, widehat{eta}_0, widehat{eta}_1. See regression coefficients for statistical properties of these estimators.

In the case of simple regression, the formulas for the least squares estimates are :widehat{eta_1}=frac{sum(x_i-ar{x})(y_i-ar{y})}{sum(x_i-ar{x})^2} and hat{eta_0}=ar{y}-widehat{eta_1}ar{x}where ar{x} is the mean (average) of the x values and ar{y} is the mean of the y values. See linear least squares(straight line fitting) for a derivation of these formulas and a numerical example.Under the assumption that the population error term has a constant variance, the estimate of that variance is given by: hat{sigma_{varepsilon = sqrt{frac{SSE}{N-2 This is called the root mean square error (RMSE) of the regression. The standard errors of the parameter estimates are given by:hatsigma_{eta_0}=hatsigma_{varepsilon} sqrt{frac{1}{N} + frac{ar{x}^2}{sum(x_i-ar x)^2:hatsigma_{eta_1}=hatsigma_{varepsilon} sqrt{frac{1}{sum(x_i-ar x)^2Under the further assumption that the population error term is normally distributed, the researcher can use these estimated standard errors to create confidence intervals and conduct hypothesis tests about the population parameters.

General linear data model

In the more general multiple regression model, there are "p" independent variables: y_i = eta_0 + eta_1 x_{1i} + cdots + eta_p x_{pi} + varepsilon_i ,The least square parameter estimates are obtained by "p" normal equations. The residual can be written as:e_i=y_i - hateta_0 - hateta_1 x_1 - cdots - hateta_p x_p The normal equations are:sum_{i=1}^{N}sum_{k=1}^{p} X_{ij}X_{ik}hat eta_k=sum_{i=1}^{N} X_{ij}y_i, j=1,dots,p, In matrix notation, the normal equations are written as:mathbf{left(X^TX ight)hat oldsymbol eta=X^Ty}For a numerical example see linear regression (example)

Regression diagnostics

Once a regression model has been constructed, it may be important to confirm the goodness of fit of the model and the statistical significance of the estimated parameters. Commonly used checks of goodness of fit include the R-squared, analyses of the pattern of residuals and hypothesis testing. Statistical significance can be checked by an F-test of the overall fit, followed by t-tests of individual parameters.

Interpretations of these diagnostic tests rest heavily on the model assumptions. Although examination of the residuals can be used to invalidate a model, the results of a t-test or F-test are sometimes more difficult to interpret if the model's assumptions are violated. For example, if the error term does not have a normal distribution, in small samples the estimated parameters will not follow normal distributions, which complicates inference. With relatively large samples, however, a central limit theorem can be invoked such that hypothesis testing may proceed using asymptotic approximations.

Regression with limited dependent variables

The response variable may be non-continuous ("limited" to lie on some subset of the real line). For binary (zero or one) variables, if analysis proceeds with least-squares linear regression, the model is called the linear probability model. Nonlinear models for binary dependent variables include the probit and logit model. The multivariate probit model makes it possible to estimate jointly the relationship between several binary dependent variables and some independent variables. For categorical variables with more than two values there is the multinomial logit. For ordinal variables with more than two values, there are the ordered logit and ordered probit models. Censored regression models may be used when the dependent variable is only sometimes observed, and Heckman correction type models may be used when the sample is not randomly selected from the population of interest. An alternative to such procedures is linear regression based on polychoric or polyserial correlations between the categorical variables. Such procedures differ in the assumptions made about the distribution of the variables in the population. If the variable is positive with low values and represents the repetition of the occurrence of an event, count models like the Poisson regression or the negative binomial model may be used

Interpolation and extrapolation

Regression models predict a value of the y variable given known values of the x variables. If the prediction is to be done within the range of values of the x variables used to construct the model this is known as interpolation. Prediction outside the range of the data used to construct the model is known as extrapolation and it is more risky.

Nonlinear regression

When the model function is not linear in the parameters the sum of squares must be minimized by an iterative procedure. This introduces many complications which are summarized in Differences between linear and non-linear least squares

Other methods

Although the parameters of a regression model are usually estimated using the method of least squares, other methods which have been used include:
* Bayesian methods, e.g. Bayesian linear regression
* Minimization of absolute deviations, leading to quantile regression
* Nonparametric regression. This approach requires a large number of observations, as the data are used to build the model structure as well as estimate the model parameters. They are usually computationally intensive.

ee also


* Confidence interval
* Confidence region
* Extrapolation
* Kriging (a linear least squares estimation algorithm)
* Forecasting
* Prediction interval
* Statistics
* Trend estimation
* Robust regression
* Multivariate normal distribution
* Important publications in regression analysis
* Multivariate adaptive regression splines
* Segmented regression.

References

* Audi, R., Ed. (1996). "curve fitting problem," "The Cambridge Dictionary of Philosophy". Cambridge, Cambridge University Press. pp.172-173.
* William H. Kruskal and Judith M. Tanur, ed. (1978), "Linear Hypotheses," "International Encyclopedia of Statistics". Free Press, v. 1,:Evan J. Williams, "I. Regression," pp. 523-41. :Julian C. Stanley, "II. Analysis of Variance," pp. 541-554.
* Lindley, D.V. (1987). "Regression and correlation analysis," , v. 4, pp. 120-23.
* Birkes, David and Yadolah Dodge, "Alternative Methods of Regression". ISBN 0-471-56881-3
* Chatfield, C. (1993) "Calculating Interval Forecasts," "Journal of Business and Economic Statistics," 11. pp. 121-135.
* Draper, N.R. and Smith, H. (1998)."Applied Regression Analysis" Wiley Series in Probability and Statistics
* Fox, J. (1997). "Applied Regression Analysis, Linear Models and Related Methods." Sage
* Hardle, W., "Applied Nonparametric Regression" (1990), ISBN 0-521-42950-1
* Meade, N. and T. Islam (1995) "Prediction Intervals for Growth Curve Forecasts," "Journal of Forecasting," 14, pp. 413-430.
* Munro, Barbara Hazard (2005) "Statistical Methods for Health Care Research" Lippincott Williams & Wilkins, 5th ed.
* Gujarati, Basic Econometrics, 4th edition
* Sykes, A.O. [http://www.law.uchicago.edu/Lawecon/WkngPprs_01-25/20.Sykes.Regression.pdf "An Introduction to Regression Analysis"] (Inaugural Coase Lecture)
* S. Kotsiantis, D. Kanellopoulos, P. Pintelas, Local Additive Regression of Decision Stumps, Lecture Notes in Artificial Intelligence, Springer-Verlag, Vol. 3955, SETN 2006, pp. 148 – 157, 2006
* S. Kotsiantis, P. Pintelas, Selective Averaging of Regression Models, Annals of Mathematics, Computing & TeleInformatics, Vol 1, No 3, 2005, pp. 66-75

Software

All major statistical software packages perform the common types of regression analysis correctly and in a user-friendly way. Simple linear regression can be done in some spreadsheet applications. There are a number of software programs that perform specialized forms of regression, and experts may choose to write their own code to using or numerical analysis software.

External links

* [http://www.sixsigmafirst.com/regression.htm Regression Analysis]
* [http://www.thinkanddone.com/ge/Reg.html Regression Analysis Tool] Online Article on linear regression with a Regression Analysis Tool
* [http://curvefit.com/ Curvefit: A complete guide to nonlinear regression] - Online textbook
* [http://www.researchmethods.org/regression Regression Made Easy with RM4Es]
* [http://www.stats.ox.ac.uk/pub/MASS3/Exegeses.pdf Exegeses on Linear Models] - Some comments on linear regression models by Bill Venables.
* [http://www.mathpages.com/home/kmath110.htm Perpendicular Regression of a Line] at MathPages
* [http://www.vias.org/simulations/simusoft_regrot.html Regression of Weakly Correlated Data] - How linear regression mistakes can appear when Y-range is much smaller than X-range
* [http://sumo.intec.ugent.be/?q=SUMO_toolbox Matlab SUrrogate MOdeling Toolbox - SUMO Toolbox] - Matlab code for Active Learning + Model Selection + Surrogate Model Regression
* [http://zunzun.com Zunzun.com] Online curve and surface fitting application


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • Regression analysis — A statistical technique that can be used to estimate relationships between variables. The New York Times Financial Glossary * * * regression analysis regression analysis ➔ analysis * * * regression analysis UK US noun [C or U] ECONOMICS ► a… …   Financial and business terms

  • regression analysis — A statistical technique that can be used to estimate relationships between variables. Bloomberg Financial Dictionary * * * regression analysis regression analysis ➔ analysis * * * regression analysis UK US noun [C or U] ECONOMICS ► a method in… …   Financial and business terms

  • regression analysis — regresinė analizė statusas T sritis automatika atitikmenys: angl. regression analysis vok. Regressionsanalyse, f rus. регрессивный анализ, m pranc. analyse de régression, f …   Automatikos terminų žodynas

  • regression analysis — regresinė analizė statusas T sritis Politika apibrėžtis Statistinės analizės metodas, skirtas prognozuoti priklausomojo (pasekmės) kintamojo reikšmes, žinant vieno ar kelių nepriklausomųjų (priežastinių) kintamųjų reikšmę. Aiškinimą žr. priede.… …   Politikos mokslų enciklopedinis žodynas

  • Regression analysis of time series — Pour les articles homonymes, voir RATS. RATS …   Wikipédia en Français

  • Regression Analysis of Time Series — Infobox Software name = RATS caption = developer = Estima latest release version = 7.0 latest release date = 2007 operating system = Cross platform genre = econometrics software license = Proprietary website =… …   Wikipedia

  • Regression Analysis of Time Series — Pour les articles homonymes, voir RATS. RATS …   Wikipédia en Français

  • regression analysis — noun the use of regression to make quantitative predictions of one variable from the values of another • Topics: ↑statistics • Hypernyms: ↑multivariate analysis • Part Meronyms: ↑regression, ↑simple regression, ↑ …   Useful english dictionary

  • regression analysis — interpretation of a finite population of data by exploring the relationship between several variables using the principle of regression; see regression (def. 5) …   Medical dictionary

  • regression analysis — Statistics. a procedure for determining a relationship between a dependent variable, as predicted success in college, and an independent variable, as a score on a scholastic aptitude test, for a given population. The relationship is expressed as… …   Universalium

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”