00:00

Predicting House Prices in Ames, Iowa: A Comprehensive Analysis

In this Kaggle project, Anadil Mohammad, Mine Tuna, and Sümeyye Çangal explore predicting house sale prices in Ames, Iowa using a dataset with 79 predictor variables. They employ data cleaning techniques like handling missing values and then build baseline models with Decision Trees, Bagging, Random Forest, and Boosting. The team achieves promising results, ranking in the top 62% of participating teams, showcasing their understanding of model selection and evaluation.

silvent
Download Presentation

Predicting House Prices in Ames, Iowa: A Comprehensive Analysis

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. KAGGLE: PREDICTING HOUSE PRICES Anadil Mohammad (23341) Mine Tuna (15592) Sümeyye Çangal (24751)

  2. Agenda ■ Introduction ■ Data Cleaning ■ Decision Tree (baseline model) ■ Bagging ■ Random Forest ■ Boosting ■ Conclusion

  3. Introduction ■ Goal: predict sale price of houses in Ames, Iowa. ■ The dataset has 79 predictor variables, 1 dependent variable SalePrice, and an ID variable. ■ The train and test data set each consist of 1460 rows and 81 columns. ■ Evaluation metric: Root Mean Squared Error (RMSE) Root Mean Squared Error (RMSE) between logpredictedvalue and logactualvalue. ■ Split train dataset further into 50% train and 50% test.

  4. Data Cleaning Data Cleaning 1. Converting NA to None for some categorical variables, e.g. NA in Alley meant “No Alley Access” 2. Converting NA to most occurring value for some categorical variables, e.g. KitchenQual 3. Converting NA to average value for certain numeric variables, e.g. Garage Area 4. Converting NA to other values for other variables, e.g. NA in GarageYrBuilt = YrHouseBuilt

  5. Regression Decision Tree (baseline) ■ Advantages of decision trees: data preparation, missing values, scale differences, outlier insensitivity, feature selection

  6. Bagging ■ Advantages: stable models, reduce variance of estimates, prevents overfitting ■ Important variables: MSSubClass and MSZoning

  7. Random Forest ■ Advantages: data preparation, missing values, feature selection, decrease the overfitting risk ■ Important variables: MSSubClass and MSZoning

  8. Boosting ■ Advantages: stable models, reduce variance of estimates.

  9. Conclusion ■ This score also landed us in the top 1105thposition out of a total 2923 teams. Hence, we performed better than 62% of the teams.

More Related