to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
April 2015 saw the median sale prices of new homes in the U.S. continue the upward trajectory they've been on since January 2014. Our first chart below indicates that if the trailing twelve month average of those prices are presently rising at an average rate of $11.66 for every $1 increase that is being recorded in the median household income of Americans.
That's about half the rate of increase that was seen during the main inflation phases of the first and second U.S. housing bubbles, and about three times the rate that we've typically observed outside those periods of time. Our second chart shows the long term picture.
Essentially, housing prices are continuing to rise because shortage conditions have developed and are continuing in the U.S. housing market. Those shortages were most acutely felt during the main inflation phase of what we've described as the second U.S. housing bubble, as investors flooded into the market and bought up large numbers of new and existing homes at very favorable terms. Since July 2013 however, that activity has substantially slowed, but not so much that housing prices are not continuing to rise at an elevated pace.
But perhaps the most interesting bit of information that can be gleaned from the U.S. housing market in April 2015 is that the median new home sale price and the average new home sale price would appear to have converged toward each other.
More significantly, the preliminary data for April 2015 indicates that the average sale price of a new home in the U.S. has fallen by over $40,000 from the record $384,000 that was recorded in October 2014. Since U.S. home builders had largely been focused on producing very high value homes for high end buyers since the second U.S. housing bubble began to inflate in July 2012, those falling average prices suggest they have turned a larger portion of their attention to the larger market of households with lower incomes.
That is perhaps the healthiest indication of the state of the recovery of the U.S. housing market, as the shortage conditions should make it possible for the new home market to continue to recover.
The downside to those conditions is that home prices will continue to grow more rapidly than the typical American household can afford. Think of the situation as being an example of something that is good for GDP, but is not necessarily to the benefit of regular Americans.
Sentier Research. Household Income Trends: April 2015. [PDF Document]. 28 May 2015. [Note: We have converted all the older inflation-adjusted values presented in this source to be in terms of their original, nominal values (a.k.a. "current U.S. dollars") for use in our charts, which means that we have a true apples-to-apples basis for pairing this data with the median new home sale price data reported by the U.S. Census Bureau.]
U.S. Census Bureau. Median and Average Sales Prices of New Homes Sold in the United States. [Excel Spreadsheet]. Accessed 28 May 2015.
Labels: real estate
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.