Real estate value analysis

[This article was first published on NEONIRA, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

French government provides from time to time some data sets that are worth the analysis. A friend, gave me this real estate data set, for analysis.

Data overview

After the download of this file, that weights less than 200kb, many things appear at first glance.

From a content point of view, data are provided for 3 countries, France, England and USA. They are organized as data series on a timeframe starting in 1800, up to 2015.

From a data quality point of view, a good job have been accomplished. I mean, there are missing data when no statistics were available, and provided data come under a well organized serie, without any hole.

From a style point of view, this appears to be a good Excel nightmare. As mentioned, we have data for 3 countries, but not the same data. For France, we got 27 series, 11 for England, and 12 for USA. But weirdness does not stop at those easy to notice issues. Some more subtles are lurking. First, some series have the same topics addressed by different authorities e.g. England home prices or scope e.g. France vs Paris home prices. Second, each data series is provided under the country currency, thus requiring a conversion to a pivot currency. That tasks is indeed eased as the conversion rate from the currency to euro based on year 2000, is provided for GBP and for USD. And third, data is presented in a well-formed and human readable format, but clearly not matching data analysis requirements. So, some data wrangling is required.

Data preparation

First I saved the file under a .xlsx format instead of the provided .xls format.

Second, I added some columns to ease data handling

name of the added column
Goal
countrydistinguish easily the country, source of the data
categorycategorize each data serie, in order to compare what is comparable
unitallows to manage conversion to a pivot currency
coefficientthe multiplier of the units, to ensure comparisons using sames dimensions
serie numberto allow serie selection when more than one is provided per country

I simply used R package XLConnect to turn excel sheet into a R data.table.

Data conversions

Following conversions were applied to the data

  • countries are turned to a factor
  • currencies are turned to EURO using respective conversion rate over the years, as provided by the data

Data wrangling

I used R package tidyr to manage data wrangling. Mainly, I turned data series from 1800 to 2015, given in columns into two column, named year and value, keeping all the other columns, except the one named ‘Séries’ as I want English language output to be produced, and not French.

Here is the main part of the code sc is simple the index of the starting column name .

dtx <- as.data.table(tidyr::gather(dtc, 'year', 'value', sc:ncol(dtc)))
dtx[, `:=`(year = as.integer(substring(year, 2)))]

Diagramming

I relied on R package ggplot2 to do the job. Just need here to set up a diagram model, to be reused. I juste enforced the following

  1. caption is desired to be at the top, using same color scheme for all diagrams, to ease reading
  2. diagram title will be taken from the English label of the French serie
  3. diagram abscisses are the years, generally full scaled from 1800 to 2015, sometimes restricted when it makes sense
  4. diagram ordinates are values
  5. theme is kept very simple and near the default provided natively by ggplot2.

Here is the main part of the code da is the data.table variable name .

mc <- c('en' = 'red', fr = 'blue', us = 'green')
ggplot(da, aes(x = year, y = value, color = country)) + 
    geom_line() + 
    scale_color_manual(values = mc[as.character(unique(da$country))]) +
    ggtitle(da$Serie[1]) + 
    theme(legend.position = 'top')

And the diagrams produced

Home price and disposable income

home price index

disposable income

disposable income zoomed

Interest rates

short time interest rate

long time interest rate

Economical context

Gross domestic product

Population

Consummer price index

Value of investment in stocks

Conclusion

Business analysis can now be executed. Let’s wait for my friend to provide its results. Will share them in a second blog post.

To leave a comment for the author, please follow the link and comment on their blog: NEONIRA.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)