https://github.com/shantanudhanawade/mini-projects
Price prediction with linear regression
https://github.com/shantanudhanawade/mini-projects
matplotlib-python numpy pandas scikit-learn-python
Last synced: about 2 months ago
JSON representation
Price prediction with linear regression
- Host: GitHub
- URL: https://github.com/shantanudhanawade/mini-projects
- Owner: Shantanudhanawade
- Created: 2025-06-18T11:17:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-18T11:56:47.000Z (about 1 year ago)
- Last Synced: 2025-06-18T12:33:31.567Z (about 1 year ago)
- Topics: matplotlib-python, numpy, pandas, scikit-learn-python
- Language: Jupyter Notebook
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mini-project
A linear regression model to predict house prices based on house sizes. Using a scatterplot of test data, the model will form a relationship between the two variables and then makes predictions.
(Data set is attached with it)
linear regression is used to model relationships between independent x variables (e.g., house sizes) and a dependent y variable (e.g., house prices) by fitting a linear equation to observed data. Put simply, we are drawing a straight line through a dataset to map out and predict. In data science, linear regression is widely used for tasks such as predicting sales, analyzing economic trends, and understanding the impact of variables on an outcome.