Regression

The idea is to find the line or plane which best fits the data. Collectively,
are called regression coefficients.
is the error term, the part of
the regression model is unable to explain.

- 1.Loss Function: The loss function in linear regression quantifies how well the model's predictions match the actual target values. In linear regression, the most common loss function is the Mean Squared Error (MSE). The MSE calculates the average squared difference between the predicted values and the actual target values for all data points.
- 2.Optimization Criterion: The optimization criterion is the goal of finding the best-fitting line (or hyperplane in higher dimensions) that minimizes the chosen loss function. In the case of linear regression, the goal is to find the coefficients (slope and intercept) of the linear equation that minimize the MSE. This involves adjusting the coefficients to minimize the overall squared difference between the predicted and actual values.
- 3.Optimization Routine: To find the optimal coefficients that minimize the MSE, an optimization routine is used. Gradient Descent is a widely used optimization algorithm for linear regression.
Now once you have the model fit next comes the metrics to measure how good the fit is, some of the common metrics are as follows:
- (Residual sum of squares), it changes with scale change
- (Total sum of squares)
- , more the better, increases with more coefficients
- (Residual Standard Error), here
- Hypothesis testing and using p-values to understand if the feature is important or not
- Using metrics like,,, etc. which takes into consideration the number of features used to build the model and penalizes accordingly
- How do we find the model that minimizes a metric like? One approach is to search through all possible models, called all subset regression. This is computationally expensive and is not feasible for problems with large data and many variables. An attractive alternative is to use stepwise regression about which we learned above, this successively adds and drops predictors to find a model that lowers. Simpler yet are forward selection and backward selection. In forward selection, you start with no predictors and add them one-by-one, at each step adding the predictor that has the largest contribution to , stopping when the contribution is no longer statistically significant. In backward selection, or backward elimination, you start with the full model and take away predictors that are not statistically significant until you are left with a model in which all predictors are statistically significant.
- Penalized Regression or Regularization:Penalized regression is similar in spirit to AIC. Instead of explicitly searching through a discrete set of models, the model-fitting equation incorporates a constraint that penalizes the model for too many variables (parameters). Rather than eliminating predictor variables entirely — as with stepwise, forward, and backward selection — penalized regression applies the penalty by reducing coefficients, in some cases to near zero. Common penalized regression methods are ridge regression and lasso regression. Regularization is nothing but adding a penalty term to the objective function and control the model complexity using that penalty term. It can be used for many machine learning Algorithms. Both Ridge and Lasso regression usesandregularizations.

Ridge brings the coefficients close to
but not exactly to
which results in the model retaining all the features. Lasso on the other hand brings the coefficients to
hence results in reduced features. Lasso shrinks the coefficients by same amount whereas Ridge shrinks them by same proportion.
Elastic Net is another useful technique which combines both L1 and L2 regularization.
- The relationship betweenandis linear. Because we are fitting a linear model, we assume that the relationship really is linear, and that the errors, or residuals, are simply random fluctuations around the true line.
- The error terms are normally distributed. This can be checked with a Q-Q plot
- Error terms are independent of each other. This can be checked with a ACF plot. This can be used while checking independence while using a time-series data
- Error terms are homoscedastic, i.e. they have constant variance. Residulas Vs Fitted graph should be flat. This means that the variability in the response is changing as the predicted value increases. This is a problem, in part, because the observations with larger errors will have more pull or influence on the fitted model.
- The independent variables are not multicollinear. Multicollinearity is when a variable can be explained as a combination of other variables. This can be checked by using VIF(Variance inflation factor).
- A VIF score ofindicates there there is a problem
- If a multicollinear variable is present the coefficients swing wildly thereby affecting the interpretability of the model. P-vales are not reliable. But it doesnot affect prediction or the goodness of fit statistics.
- To deal with multicollinearity
- drop variables
- create new features from existing ones
- PCA/PLS
One very important point to remember is that Generalized Linear Regression is called so because
is linear w.r.t its coefficients
, etc. it is irrespective of whether the features
, etc. are linear or not. Meaning
can actually be
and it won't matter.
OLS is a stats model, which will help us in identifying the more significant features that can has an influence on the output. OLS model in python is executed as: lm = smf.ols(formula = 'Sales ~ am+constant', data = data).fit() lm.conf_int() lm.summary() And we get the output as below

The higher the t-value for the feature, the more significant the feature is to the output variable. And also, the p-value plays a rule in rejecting the Null hypothesis(Null hypothesis stating the features has zero significance on the target variable.). If the p-value is less than 0.05(95% confidence interval) for a feature, then we can consider the feature to be significant.
In simple linear regression, try to minimize the error rate. But in SVR, we try to fit the error within a certain threshold.
Our best fit line is the one where the hyperplane has the maximum number of points. We are trying to do here is trying to decide a decision boundary at ‘e’ distance from the original hyperplane such that data points closest to the hyperplane or the support vectors are within that boundary line.

In some cases, the true relationship between the outcome and a predictor variable might not be linear. There are different solutions extending the linear regression model for capturing these nonlinear effects, some of these are covered below.
The equation of polynomial becomes something like this.
and so on...
The degree of order which to use is a Hyperparameter, and we need to choose it wisely. But using a high degree of polynomial tries to overfit the data and for smaller values of degree, the model tries to underfit so we need to find the optimum value of a degree. Polynomial Regression on datasets with high variability chances to result in over-fitting.
In order to overcome the disadvantages of polynomial regression, we can use an improved regression technique which, instead of building one model for the entire dataset, divides the dataset into multiple bins and fits each bin with a separate model. Such a technique is known as Regression spline.
In polynomial regression, we generated new features by using various polynomial functions on the existing features which imposed a global structure on the dataset. To overcome this, we can divide the distribution of the data into separate portions and fit linear or low degree polynomial functions on each of these portions. The points where the division occurs are called Knots. Functions which we can use for modelling each piece/bin are known as Piecewise functions. There are various piecewise functions that we can use to fit these individual bins.
It does the same thing as above but just removes the need to specifying the knots. It fits spline models with automated selection of knots.
Suppose we have two variables,
and
, where
some normal white noise.
- 1.What will our coefficient be of we run a regression ofon?
- 2.What happens if we run a regression ofon?
Answer
Let's start with
, then the regression line is a perfect fit. The points of such a dataset is
Adding some normal white noise to these points
. A regression line fit on these points will move up. Hence the coefficients of
,
will increase,
might still stay at
or at max increase.
This movement will go in the negative direction if we predict
based on
Do you think Linear Regression should be used in Time series analysis?
Answer
Linear Regression as per me can be used in Time Series but might not always give good results. Few reasons which come up are:
- Linear Regression is good for intrapolation but not for extrapolation so the results can vary wildly
- When Linear Regression is used but observations are correlated (as in time series data) you will have a biased estimate of the variance
- Moreover, time-series data have a pattern, such as during peak hours, festive seasons, etc., which would most likely be treated as outliers in the linear regression analysis
Let's say we want to build a model to predict booking prices.
- 1.Explain the difference between a linear regression versus a random forest regression.
- 2.Which one would likely perform better?
Answer
Linear Regression is used to predict continuous outputs where there is a linear relationship between the features of the dataset and the output variable. It is used for regression problems where you are trying to predict something with infinite possible answers such as the price of a house.
In the case of regression, decision trees in random forest learn by splitting the training examples in a way such that the sum of squared residuals is minimized. To classify a new object based on attributes, each tree gives a classification and we say the tree “votes” for that class. The forest chooses the classification having the most votes (over all the trees in the forest) and in case of regression, it takes the average of outputs by different trees. It is useful when there are complex relationships between the features and the output variables. They also work well compared to other Algorithms when there are missing features, when there is a mix of categorical and numerical features and when there is a big difference in the scale of features.
It is difficult to tell which will perform better, it completely depends on the problem statement and the available data. Other than the points mentioned above some of the Key advantages of linear models over tree-based ones are:
- they can extrapolate (e.g., if labels are between 1-5 in train set, tree-based model will never predict 10, but linear will)
- could be used for anomaly detection because of extrapolation
- interpretability (yes, tree-based models have feature importance, but it's only a proxy, weights in linear model are better)
- need less data to get good results
- Random Forest is able to discover more complex relation at the cost of time
The first point becomes clearly important in this case as we would need booking price values which might not necessarily be in the training data range.
Say we are running a probabilistic linear regression which does a good job modeling the underlying relationship between some
and
. Now assume all inputs have some noise
added, which is independent of the training data.
What is the new objective function? How do you compute it?
The objective function for linear regression where
is set of input vectors and
are the weights:
Let's assume that the noise added is Gaussian as follows:
, then the new objective function is given by:
.
To compute it, we simplify:
We know that the expectation for
is
so, the middle term becomes
and we are left with:
The last term can be simplified as:
And therefore, the objective function simplifies to that of L2-regularization:
What is L1 and L2 regularization? What are the differences between the two?
and
regularization are both methods of regularization that attempt to prevent overfitting in machine learning. For a regular regression model assume the loss function is given by
.
adds the absolute value of the coefficients as a penalty term, whereas
adds the squared magnitude of the coefficients as a penalty term.
The loss function for the two are:
-
-
Where the loss function
is the sum of errors squared, given by the following, where
is the model of interest, for example, linear regression with
predictors:
If we run gradient descent on the weights
, we find that
regularization will force any weight closer to
, irrespective of its magnitude, whereas, for the
regularization, the rate at which the weight goes towards
becomes slower as the rate goes towards
. Because of this,
is more likely to “zero” out particular weights, and hence removing certain features from the model completely, leading to more sparse models.
You're working with several sensors that are designed to predict a particular energy consumption metric on a vehicle. Using the outputs of the sensors, you build a linear regression model to make the prediction. There are many sensors, and several of the sensors are prone to complete failure.
What are some cost functions you might consider, and which would you decide to minimize in this scenario?
There are two potential cost functions here, one using the
norm and the other using the
norm. Below are two basic cost functions using an L1 and L2 norm respectively:
-
-
It would be more sensible to use an
norm in this case since the
norm penalizes the outliers harder and thus gives less weight to the complete failures than the
norm does.
Additionally, it would be prudent to involve a regularization term to account for noise. If we assume that the noise added to each sensor uniformly as follows:
then using traditional
regularization, we would have the cost function:
However, given the fact that there are many sensors (and a broad range of how useful they are), we could instead assume that noise is added by:
where each diagonal term in the matrix D represents the error term used for each sensor (and hence penalizing certain sensors more than others). Then our final cost function is given by:
[AIRBNB] Prove that maximizing the likelihood is equivalent to minimizing the sum of squared residuals
Suppose you are running a linear regression and model the error terms as being normally distributed. Show that in this setup, maximizing the likelihood of the data is equivalent to minimizing the sum of squared residuals.
A mathematical derivation like this requires us to:
- Define correct Mathematical symbols and their relationships through equations
- Recall and use the definitions of the terms like likelihood and normally distributed
- Perform Mathematical manipulation to derive the required result
Problem Setup:
A linear regression model proposes that the output
is linearly dependent on the input vector
by the relation,
Where,
is an
-dimensional vector, and
are the parameters of the model.
Next, we are give a set of training data points, consisting of
- a set of input vectors,. Note that every inputis a vector,
- and a set of outputs
Given the values of the parameters
and
, the estimate
is given by
.
Finally, the error term for
input is simply the difference between the observed value
and the estimate
.
Note that the error term depends on the parameters of the model
and
, and hence is denoted as
.
Likelihood:
Take a look at the problem statement again. We are assuming that the error terms are normally distributed. There is an implicit assumption that all the error terms are independent of each other. (Make sure you make this assumption explicit to your interviewer).
What does it mean for the error term to be normally distributed. It means that, by definition, the probability distribution function of the
error term is given by
This probability distribution function of the
input is also called its likelihood function, and also depends on the parameters of the model,
and
.
Since we are assuming that the error terms are also independent, their joint probability distribution, is given by the product of their likelihood.
Maximum Likelihood Estimator:
The maximum likelihood estimator seeks to maximize the likelihood function defined above. For the maximization,
- We can ignore the constant
- We can also take the log of the likelihood function, converting the product into sum
The log likelihood function of the errors is given by
As a final step, for the purpose of optimization, we can ignore the constant multiplier
from the summation, giving us
But this is just the negative of the sum of squared errors!
Thus, if you want to maximize the likelihood (or log likelihood) of the errors, you better minimize the sum of squared errors of the estimates.