House Price Prediction Using Linear Regression In Machine Learning

Year : 2024 | Volume :11 | Issue : 02 | Page : –
By

Somorjit Laishram

R. Santhosh Kumar

P. Priyadarshani

  1. Student Department of Artifical Intelligence and Data Science, Sri Manakula Vinayagar Engineering College Madagadipet Puducherry India
  2. Student Department of Artifical Intelligence and Data Science, Sri Manakula Vinayagar Engineering College, Madagadipet Puducherry India
  3. Student Department of Artifical Intelligence and Data Science, Sri Manakula Vinayagar Engineering College, Madagadipet Puducherry India

Abstract

In the modern world, real estate is among the most important investments, particularly in a city like Chennai, which is where many people aspire to work and settle down. Due to people’s high purchasing power, this will cause property prices to rise daily. When purchasing a home, buyers will consider whether or not it will yield a healthy profit margin. Hence, before spending your hard-earned money on any property, it is crucial to understand the current value of a house. This article aims to forecast the current market value of a Chennai property and develop a model that could assist businesses in predicting home prices and help customers make business decisions. The technique consisted of main steps: data understanding, data cleansing, modelling, data standardization etc. In the process, various aspects are considered, such as the quantity of bedrooms and the accessibility of various utilities. A customer can use this forecast to find more feasible solutions that better fit their needs. To estimate the costs of the various dwellings in question, we have employed the Linear Regression Model.

Keywords: dataset; house price prediction; linear regression; regression analysis; machine learning.

[This article belongs to Journal of Artificial Intelligence Research & Advances(joaira)]

How to cite this article: Somorjit Laishram, R. Santhosh Kumar, P. Priyadarshani. House Price Prediction Using Linear Regression In Machine Learning. Journal of Artificial Intelligence Research & Advances. 2024; 11(02):-.
How to cite this URL: Somorjit Laishram, R. Santhosh Kumar, P. Priyadarshani. House Price Prediction Using Linear Regression In Machine Learning. Journal of Artificial Intelligence Research & Advances. 2024; 11(02):-. Available from: https://journals.stmjournals.com/joaira/article=2024/view=0

References

  1. Eason G, Noble B, Sneddon IN. On certain integrals of Lipschitz-Hankel type involving products of Bessel functions. Philosophical Transactions of the Royal Society of London. Series A, Mathematical and Physical Sciences. 1955 Apr 19;247(935):529-51.
  2. J. Clerk Maxwell, A Treatise on Electricity and Magnetism, 3rd ed., vol. 2. Oxford: Clarendon, 1892, pp.68–73.
  3. Mu J, Wu F, Zhang A. Housing Value Forecasting Based on Machine Learning Methods. Abstract and Applied Analysis 2014;2014:1–7. doi:10.1155/2014/648047. M. Young, The Technical Writer’s Handbook. Mill Valley, CA: University Science, 1989.
  4. Lu S, Li Z, Qin Z, Yang X, Goh RSM. A hybrid regression technique for house prices prediction. 2017 IEEE International Conference on Industrial Engineering and Engineering Management (IEEM) 2017. doi:10.1109/ieem.2017.8289904.
  5. C. R. Madhuri, G. Anuradha and M. V. Pujitha, ”House Price Prediction Using Regression Techniques: A Comparative Study,” 2019 International Conference on Smart Structures and Systems (ICSSS), Chennai, India, 2019, pp. 1-5, doi: 10.1109/ICSSS.2019.8882834.
  6. Truong Q, Nguyen M, Dang H, Mei B. Housing price prediction via improved machine learning techniques. Procedia Computer Science. 2020 Jan 1;174:433-42.
  7. Phan TD. Housing price prediction using machine learning algorithms: The case of Melbourne city, Australia. In2018 International conference on machine learning and data engineering (iCMLDE) 2018 Dec 3 (pp. 35-42). IEEE.
  8. Heidari M, Zad S, Rafatirad S. Ensemble of supervised and unsupervised learning models to predict a profitable business decision. In2021 IEEE International IOT, Electronics and Mechatronics Conference (IEMTRONICS) 2021 Apr 21 (pp. 1-6). IEEE.
  9. Li L, Chu KH. Prediction of real estate price variation based on economic parameters. In2017 International Conference on Applied System Innovation (ICASI) 2017 May 13 (pp. 87-90). IEEE.
  10. India. Mumbai most expensive city in India for expats, ranks 19th in Asia: Survey. @bsindia. Business Standard; 2020. Available from: https://www.business-standard.com/article/current-affairs/mumbai-most-expensive-city-in-india-for-expats-ranks-19th-in-asia-survey-120060901190_1.html ‌

Regular Issue Subscription Review Article
Volume 11
Issue 02
Received February 29, 2024
Accepted May 26, 2024
Published July 10, 2024

function myFunction2() {
var x = document.getElementById(“browsefigure”);
if (x.style.display === “block”) {
x.style.display = “none”;
}
else { x.style.display = “Block”; }
}
document.querySelector(“.prevBtn”).addEventListener(“click”, () => {
changeSlides(-1);
});
document.querySelector(“.nextBtn”).addEventListener(“click”, () => {
changeSlides(1);
});
var slideIndex = 1;
showSlides(slideIndex);
function changeSlides(n) {
showSlides((slideIndex += n));
}
function currentSlide(n) {
showSlides((slideIndex = n));
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName(“Slide”);
var dots = document.getElementsByClassName(“Navdot”);
if (n > slides.length) { slideIndex = 1; }
if (n (item.style.display = “none”));
Array.from(dots).forEach(
item => (item.className = item.className.replace(” selected”, “”))
);
slides[slideIndex – 1].style.display = “block”;
dots[slideIndex – 1].className += ” selected”;
}