Becoming A Data Scientist


My Journey of Data Science

King County House Data: How Does Location Affect House Prices?

King County house dataset contains house data which are sold during 2014 and 2015 at King County. As a part of my project I had a chance to explore and work on this dataset. ‘How Does Location Affect House Prices?’ is asked to explore which part of the county is most expensive , how location affect house prices. If there is enough correlation between house price and location data, location data can be used as a predictor for linear regression analysis.


Using `str.contains()` to operate over multi class values

Pandas Series.str.contains() function is generally used for to search whether a Series or Index contains a string pattern or a regular expression(regex). If the Series or Index contains the searched pattern or regex, the function gives back a boolean Series or Index.