Skip to main content

Posts

Showing posts with the label csv

Machine Learning model to predict price_of_house

Today let's look at one of the machine learning model which can predict the prices of house based on the described data. We'll look at the linear regression model for which we'll follow a few steps such as: import required modules read the csv file plot the graph building the linear regression model to fit/train the data predict value with a parameter have a new data file for value prediction ( to view the images either open it in a new tab or zoom-in  please! )

Machine Learning model for predicting 'Salary' of an Employee based on 'YearsofExperience'

“ Data really powers everything that we do .” — Jeff Weiner In the 21st century, Data is one of the most valuable entity anyone can have! There is loads-and-loads of data generated everyday. And to process this huge amount of data we need people who have expertise in it, who by the way are called as Data Engineers. Data Engineer collects the raw data, process it for further use; but we need an Analytic process which will automatically predict the data based on the previous one. And here's how 'Machine Learning' comes into the picture. "Machine Learning allows us to make highly accurate predictions based on the Historical Dataset which is used to train the machine learning model." Today let us look at a similar ML model to predict the 'Salary' of Employees based on 'YearsofExperience'. (P.S: I've provided pdf link at the very bottom of this page for clear understanding) 1) import the required modules 2) read the csv file 3) plot the graph 4) us