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
The price of the typical new home sold in the United States is rising at an unprecedented rate.
That's not something that's immediately obvious if you just look at the reported median and average new home price data reported each month. The following chart shows that data from January 2000 through February 2021:
What this chart does is that average new home sale prices reached a new record high based on the first estimate for February 2021 (the data will be revised at least two or three times before being finalized). And at the same time, the median new home sale price in the U.S., which is representative of the typical home sold, is just a bit off its record high, which was set in December 2020.
But to understand why that's unprecedented, we need to reframe the housing sale price data with respect to the income earned by a typical American household. In the following chart, we take the trailing twelve month average of median new home sale prices and track it with respect to the trailing twelve month average of median household income for each month from December 2000 through February 2021.
This chart focuses on the historical period that includes the rapid inflation phases of the first housing bubble and of the second, where we find today's trend for median new home sale prices are rising despite little to no change in median household incomes. If we expand the chart to include all the available historical data going back to 1967, we see there's no other period on record where that's happened.
As you might imagine, that trend means new homes are rapidly becoming more unaffordable for the typical American household.
At present, the median sale price of a new home sold in the U.S. is 5.12 times greater than the annual income earned by the typical American household. That ratio previously peaked at 5.45 times median household income in February 2018, before the rapid growth of median household income during the Trump administration combined with slow growth in new home sale prices to reverse what had previously been a rising trend of unaffordability. The ratio bottomed at 4.88 times median household income in May 2020.
By contrast, median new home sale prices had previously peaked at 5.21 times greater than median household income in June 2006 during the first housing bubble, where rapidly falling new home sale prices during the deflation phase accounts for the reduction in relative unaffordability.
We like this final chart because it neatly visualizes what we mean when we discuss the inflation and deflation phases of the U.S.' two previous housing bubbles. As median new home sale prices have once again decoupled from their previously established positive relationship with median household incomes, their rising level now suggests the U.S. is experiencing its third.
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.