Linear Regression using Python Hi MLEnthusiasts! In this tutorial, we will learn how to implement Linear Regression using Python, how to visualize our variables, i.e., do plotting and how to do mathematical computation of R square using Python. Please note that this tutorials is based on our previous tutorial “The Mathematics behind Univariate Linear Regression“. […]
Tag: linear-regression
The Mathematics Behind Univariate Linear Regression
Hi ML Enthusiasts! Today, we are going to learn about the mathematics behind linear regression. Basics of Linear Regression The equation or curve that is used to represent the linear law is given as below: where i ranges from 1 to number of observations, N, yi is the output variable, also called as predicted variable […]
Mathematics Behind Linear Regression
Mathematics Behind Linear Regression Hi ML Enthusiasts! Today, we are going to learn about the mathematics behind linear regression. Basics of Linear Regression The equation or curve that is used to represent the linear law is given as below: where i ranges from 1 to number of observations, N, yi is the output variable, also […]
Linear Regression using R
Linear Regression using R Hi Everyone! Today, we will learn about implementing linear regression using R and building the linear regression model in R using a dataset from kaggle. The dataset is divided into two parts, one is train.csv and the other one is test.csv. We will make our model using train.csv and then test […]