0% found this document useful (0 votes)
4 views6 pages

Linear Regression Implementation Guide

The document outlines the aim of implementing simple and multiple linear regression models. It explains that linear regression is a supervised machine-learning algorithm that predicts outcomes based on labeled datasets, assuming a linear relationship between inputs and outputs. Multiple Linear Regression expands this by analyzing the impact of two or more independent variables on a dependent variable.

Uploaded by

adityyaa6666
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views6 pages

Linear Regression Implementation Guide

The document outlines the aim of implementing simple and multiple linear regression models. It explains that linear regression is a supervised machine-learning algorithm that predicts outcomes based on labeled datasets, assuming a linear relationship between inputs and outputs. Multiple Linear Regression expands this by analyzing the impact of two or more independent variables on a dependent variable.

Uploaded by

adityyaa6666
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Practical 3

Aim: Implement simple and multiple linear regression models.


Theory:
Linear regression is a type of supervised machine-learning algorithm that learns from the labelled datasets
and maps the data points with most optimized linear functions which can be used for prediction on new
datasets. It assumes that there is a linear relationship between the input and output.
Multiple Linear Regression extends this concept by modelling the relationship between a dependent
variable and two or more independent variables. This technique allows us to understand how multiple
features collectively affect the outcomes.
Program:

9
10
11
12
13
14

You might also like