Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/islamshahil/machinelearning
A Fun Project - Using LinearRegression, Predicting the Value.
https://github.com/islamshahil/machinelearning
hacktoberfest linearregression machine-learning numpy pandas python sklearn
Last synced: 19 days ago
JSON representation
A Fun Project - Using LinearRegression, Predicting the Value.
- Host: GitHub
- URL: https://github.com/islamshahil/machinelearning
- Owner: islamshahil
- License: gpl-3.0
- Created: 2019-08-08T18:24:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-06T22:16:02.000Z (over 1 year ago)
- Last Synced: 2024-11-26T12:09:44.197Z (3 months ago)
- Topics: hacktoberfest, linearregression, machine-learning, numpy, pandas, python, sklearn
- Language: Python
- Homepage:
- Size: 68.8 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LinearRegression
A Fun Project - Using LinearRegression, Predicting the Values.
This is just a fun project. I have made a Dataset, where has a Year column and the Price of a land column and using LinearRegression, I am predicting the price of that land in any future year!!
This Project will teach you the application of LinearRegression and concept of Machine Learning.
## Libraries Required
1. [scikit-learn](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LinearRegression.html).
```
$ pip install scikit-learn
```2. [pandas](https://pandas.pydata.org/).
```
$ pip install pandas
```## How It Works & Runs
Install the above Libraries and make sure you are on Python3(https://www.python.org/downloads/release/python-360/). Go to the main.py file and change the path of the file directory of LandData.xlsx file and Enter the Year of which you want to predict the Land Price. Save the file and Run the file.