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
What can you discover when you chart median new home sale prices against median household income?
Here's the visualized beginning of the answer to that question, using annual data from 1967 through 2021 and monthly data from December 2000 through December 2022!
What you first see is there are some long running and often linear relationships between these two variables. And what you find is that when you get to 2000, bubbles begin inflating that break down those relationships. We've highlighted that region with the red-dashed lines in the chart, so let's zoom in on it in the next chart.
The second chart answers the question of what the relationship between median new home sale prices and household income would have looked like had 2020's coronavirus pandemic not messed up the U.S. Census Bureau's collection of income data for 2019!
Going back to the first chart, you also get the answer to another question: How inflated are house prices today compared to how they were prices before the housing bubbles? As of December 2022, At just over $450,000, the trailing twelve month average median new home sale price costs around 50% more than what they would had the relationships that existed before 2000 continued to the present day.
Going by most observers, there have been two major housing bubbles in the 21st Century. The inflation phase for the first housing bubble had its origins in August 2000 and peaked in March 2007. Its deflation phase then lasted until December 2009. What we would consider the second housing bubble took off in July 2012. This more recent bubble has had several phases, but using the measure of median new home sale prices, has only begun to deflate in the last several months. That development is only starting to show up in the twelve month moving averages we've presented in these charts.
These bigger pictures provide a little different, but very useful way to look at the underlying data for assessing how affordable housing is within the U.S. We're looking forward to seeing how they evolve during the course of this year.
U.S. Bureau of Economic Analysis. Table 2.6. Personal Income and Its Disposition, Monthly, Personal Income and Outlays, Not Seasonally Adjusted, Monthly, Middle of Month. Population. [Online Database (via Federal Reserve Economic Data)]. Last Updated: 27 January 2023. Accessed: 27 January 2023.
U.S. Bureau of Economic Analysis. Table 2.6. Personal Income and Its Disposition, Monthly, Personal Income and Outlays, Not Seasonally Adjusted, Monthly, Middle of Month. Compensation of Employees, Received: Wage and Salary Disbursements. [Online Database (via Federal Reserve Economic Data)]. Last Updated: 27 January 2023. Accessed: 27 January 2023.
U.S. Census Bureau. New Residential Sales Historical Data. Houses Sold. [Excel Spreadsheet]. Accessed 26 January 2023.
U.S. Census Bureau. New Residential Sales Historical Data. Median and Average Sale Price of Houses Sold. [Excel Spreadsheet]. Accessed 26 January 2023.
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.