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.
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.
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.