Decision Tree Regression
Support Vector Regression
Polynomial Regression
Multi Linear Regression
yourNotebook In [1]: import numpy as np import pandas as pd In [2]: data=pd.read_csv('Melbourne.csv') OrgData=data OrgData Out[2]: Suburb Address Rooms Type Price Method SellerG Date Distance Postcode … Bathroom Car Landsize BuildingArea YearBuilt CouncilArea Lattitude Longtitude Regionname Propertycount 0 Abbotsford 68 Studley St 2 h NaN SS Jellis 03-09-2016 2.5 3067.0 … …
Read More »Simple Linear Regression
Understanding Linear Regression in Machine Learning using Python Language Linear Regression is a simple machine learning model for regression problems, i.e., when the target variable is a real value. Example: Let’s start with an example — suppose we have a dataset with information about the area of a house (in square feet) …
Read More »