Skip to main content

Posts

Showing posts from April, 2021

How much does this house cost?

House Price v2.0 House Pricing ¶ Another classical problem to practice your Exploratory Data Analysis is the house pricing competition from Kaggle. Like the Titanic one that I went through in this entry: https://achefethings.blogspot.com/2021/04/titanic-pre-margin-0px-border-none.html you have many tutorials and a lot of information to explore. In this case the data set is very similar to the Titanic one: train.csv file for you to prepare your model test.csv file to put your model into work data_description.txt as the datasets have a ton of values this one is important to fathom what each column means sample_submission.csv where you post your results and to update them to Kaggle As always, at the begining we will import all the external modules, packages, libraries that will be needed throughout the analysis. In [175]: import pandas as pd import matplotlib.pyplot as plt import numpy as np import se