This is an audio version of the Wikipedia Article:
https://en.wikipedia.org/wiki/Linear_...
00:03:17 1 Introduction
00:14:46 1.1 Assumptions
00:15:27 1.2 Interpretation
00:23:39 2 Extensions
00:27:13 2.1 Simple and multiple linear regression
00:27:32 2.2 General linear models
00:28:29 2.3 Heteroscedastic models
00:29:42 2.4 Generalized linear models
00:30:26 2.5 Hierarchical linear models
00:33:23 2.6 Errors-in-variables
00:34:12 2.7 Others
00:34:44 3 Estimation methods
00:35:18 3.1 Least-squares estimation and related techniques
00:35:59 3.2 Maximum-likelihood estimation and related techniques
00:43:38 3.3 Other estimation techniques
00:45:43 4 Applications
00:49:07 4.1 Trend line
00:49:31 4.2 Epidemiology
00:50:51 4.3 Finance
00:52:20 4.4 Economics
00:52:49 4.5 Environmental science
00:53:17 4.6 Machine learning
00:53:46 5 History
00:54:12 6 See also
Listening is a more natural way of learning, when compared to reading. Written language only began at around 3200 BC, but spoken language has existed long ago.
Learning by listening is a great way to:
increases imagination and understanding
improves your listening skills
improves your own spoken accent
learn while on the move
reduce eye strain
Now learn the vast amount of general knowledge available on Wikipedia through audio (audio article). You could even learn subconsciously by playing the audio while you are sleeping! If you are planning to listen a lot, you could try using a bone conduction headphone, or a standard speaker instead of an earphone.
Listen on Google Assistant through Extra Audio:
https://assistant.google.com/services...
Other Wikipedia audio articles at:
https://www.youtube.com/results?searc...
Upload your own Wikipedia articles through:
https://github.com/nodef/wikipedia-tts
Speaking Rate: 0.9332962365251524
Voice name: en-US-Wavenet-D
"I cannot teach anybody anything, I can only make them think."
Socrates
SUMMARY
=======
In statistics, linear regression is a linear approach to modeling the relationship between a scalar response (or dependent variable) and one or more explanatory variables (or independent variables). The case of one explanatory variable is called simple linear regression. For more than one explanatory variable, the process is called multiple linear regression. This term is distinct from multivariate linear regression, where multiple correlated dependent variables are predicted, rather than a single scalar variable.In linear regression, the relationships are modeled using linear predictor functions whose unknown model parameters are estimated from the data. Such models are called linear models. Most commonly, the conditional mean of the response given the values of the explanatory variables (or predictors) is assumed to be an affine function of those values; less commonly, the conditional median or some other quantile is used. Like all forms of regression analysis, linear regression focuses on the conditional probability distribution of the response given the values of the predictors, rather than on the joint probability distribution of all of these variables, which is the domain of multivariate analysis.
Linear regression was the first type of regression analysis to be studied rigorously, and to be used extensively in practical applications. This is because models which depend linearly on their unknown parameters are easier to fit than models which are non-linearly related to their parameters and because the statistical properties of the resulting estimators are easier to determine.
Linear regression has many practical uses. Most applications fall into one of the following two broad categories:
If the goal is prediction, or forecasting, or error reduction, linear regression can be used to fit a predictive model to an observed data set of values of the response and explanatory variables. After developing such a model, if additional values of the explanatory variables are collected without an accompanying response value, the fitted model can be used to make a prediction of the response.
If the goal is to explain variation in the response variable that can be attributed to variation in the explanatory variables, linear regression analysis can be applied to quantify the strength of the relationship between the response and the explanatory variables, and in particular to determine whether some explanatory variables may have no linear relationship with the response at all, or to identify which subsets of explanatory variables may contain redundant information about the response.Linear regression models are often fitted using the least squares approach, but they may also be fitted in other ways, such as by minimizing the "lack of fit" in some other norm (as with least absolute deviations regression), or by minimizing a penalized version of the least squares cost function as in ridge regression (L2-norm penalty) and las ...