Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/winterwind/housingpricesproject

A two-part project involving making predictions using various regressors and then implementing linear regression from scratch and predicting that way
https://github.com/winterwind/housingpricesproject

csv csv-files data-science decision-tree gradient-descent jupyter jupyter-notebook knearest-neighbors knn linear-regression linear-regression-scratch machine-learning python random-forest regression

Last synced: 8 days ago
JSON representation

A two-part project involving making predictions using various regressors and then implementing linear regression from scratch and predicting that way

Awesome Lists containing this project

README

        

# HousingPricesProject
A two-part project involving making predictions using various regressors and then implementing linear regression from scratch and predicting that way. Both extract data from .csv files and can be found in their respective folders.

## Task A
Here, I parse data from a .csv file, handle missing data, and then apply three different regressors: KNearestNeighbors, DecisionTree, and RandomForest; and then compare and contrast the results.

## Task B
Here, I parse data from a similar .csv file (except it has no missing data) and then apply the premade linear regressor model on it. Then, I make a linear regressor class form scratch by way of gradient descent and then also apply that to the data. I then compare and contrast the two to see the validity of my homemade linear regressor model.