Loading...

Regression

Regressions are machine learning algorithms used to predict numerical response columns. Predicting the salaries of employees using their age or predicting the number of cyber attacks a website might face would be examples of regressions. The most popular regression algorithm is the linear regression.

You must always verify that all the assumptions of a given algorithm are met before using them. For example, to create a good linear regression model, we need to verify the Gauss-Markov assumptions.

  • Linearity: the parameters we are estimating using the OLS method must be linear.

  • Non-Collinearity: the regressors being calculated aren’t perfectly correlated with each other.

  • Exogeneity: the regressors aren’t correlated with the error term.

  • Homoscedasticity: no matter what the values of our regressors might be, the error of the variance is constant.

Most of regression models are sensitive to unnormalized data, so it’s important to normalize and decompose your data before using them (though some models like random forest can handle unnormalized and correlated data). If we don’t follow the assumptions, we might get unexpected results (example: negative R2).

Let’s predict the total charges of the Telco customers using their tenure. We will start by importing the telco dataset.

import vastorbit as vo

churn = vo.read_csv("customers.csv")

Next, we can import a linear regression model.

from vastorbit.machine_learning.vast import LinearRegression

Let’s create a model object.

model = LinearRegression()

We can then fit the model with our data.

# TotalCharges has a few blank values; LinearRegression is scikit-learn
# backed and rejects NaN, so we drop those rows first.
churn = churn.dropna(columns = ["tenure", "TotalCharges"])
model.fit(churn, ["tenure"], "TotalCharges")
model.plot()

We have many metrics to evaluate the model.

model.report()
value
explained_variance0.6820785357512373
max_error3997.1553536837264
median_absolute_error486.0787029455704
mean_absolute_error879.8360404914814
mean_squared_error40109649.07170942
root_mean_squared_error1278.0173805830188
r20.6820785357512362
r2_adj0.6820333122143587
aic123114.12334491487
bic123127.83695243864

Our example forgoes splitting the data into training and testing, which is important for real-world work. Our main goal in this lesson is to look at the metrics used to evaluate regressions. The most famous metric is R2: generally speaking, the closer R2 is to 1, the better the model is.

In the next lesson, we’ll go over Classification