Ticker

6/recent/ticker-posts

Linear regression in Machine learning using Python

 Linear regression in Machine learning using Python:

What is regression?

Regression 


Regression algorithms are used to predict continuous variables like weather, temperature, price etc. It is used when there is a relationship between the input and output labeled data.

Linear regression:

L Linear regression is one of the most popular widely used algorithms. It is used to predict continuous numerical values. 

L Linear regression understands the relationship between the dependent and independent variables. Then it draws a straight line in between the data points and tries to predict the future values.

Linear Regression

The line of regression is also called as best fit line. It is drawn based on the linear equation given below

Y=mx + b    =>     Y=a0+a1*X

Y=Dependent variable

X=Independent variable

a0=Intercept of the line

a1= Linear regression coefficient

Positive Linear Relationship:

When the dependent variable in the y axis is increasing as the x axis is increasing, then it is called as positive linear relationship.

Y=a0+a1*X

Positive Linear Relationship


Negative Linear Relationship:

When the dependent variable in the y axis is decreasing as the x axis increasing, then it is called as positive linear relationship.

Y=-a0+a1*X

Negative Linear Relationship

Cost function:

The main aim in regression is to find the best fit line. The best fit line will have minimum error. Error is the difference between the actual value and the predicted value. The coefficient of a0 and a1 determines the best fit line. So, cost function is used to find the coefficient of a0 and a1 for the best fit line.

In linear regression we use Mean squared error (MSE) cost function.

MSE=1(1/N) ∑i=1 n (yi-(a1x i+a0))2

N= Total number of observations

Yi=Actual value

a1x i+a0=predicted value

Residual is the distance between the predicted value and the actual value. If the cost function is high, then the observed point is far from the regression line and the residual is also high. If the cost function is less, the observed point is close to the regression line and the residual is also small.

Gradient Descent:

 


To minimize the cost function (MSE) gradient descent is used. The coefficients of a0 and a1 are updated by the gradient descent method.

The goal is to reach the optimal value. For that the coefficients are randomly selected and step by step it is proceeded to reach the optimal value. The number of steps taken is called as learning rate. This learning rate decides how fast the algorithm reaches the optimal value.

Linear Regression Implementation using Python:

Importing the libraries:

Loading the data:

 


First ten rows:

 


Overall information about the dataset:

 


Statistically describing the dataset:

 


Checking for the null values:

 


Visual plots:

 


Checking for outliers using boxplot:

 



Splitting the dataset into train and test data:

 


Scaling the features using Standard Scalar:

 


Creating and fitting a model:



Predicted values for the test data:

 


Error metrics:

 


Performance metrics:

 











 



 



Post a Comment

0 Comments