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
Last week, economist Steve Keen went on record to predict that Australia's economy would fall into recession in 2017.
In doing that, Keen made a back-of-the-envelope calculation linking changes in the rate of private sector debt growth available with real economic growth available via an Excel spreadsheet.
We were intrigued by the math, so we've converted the spreadsheet math into the simple tool below, in which anyone can play with the numbers to predict how a nation's economic growth might change over the next year based on just a handful of factors.
The default numbers apply for the years 2016 and 2017 for Keen's Australia example, but you're more than welcome to substitute the numbers that apply for other nations or years of interest. If you're reading this article on a site that republishes our RSS news feed, please click here to access a working version of this tool!
In the tool above, "Current Nominal Credit Growth Rate" is the rate at which private sector debt increased from the previous period to reach its current value. The "Projected Nominal Credit Growth Rate" is the rate that would apply in the future period under consideration.
The reason why changes in the rate at which private sector debt grows would have predictive power for future economic performance comes down to why people in the private sector of the economy take on debt in the first place. It is because they reasonably expect to have sufficient income in the future where they will be able to make payments without significant problems.
As such, the forward-looking expectations that influence decisions to take on debt in the private sector, and consequently economic growth as a result, serve a similar role to what the expectations for earning dividends in the future do for setting the current and projecting the future value of stock prices. The math involved is certainly very similar.
As for Steve Keen's recession call for Australia, we should caution that he has been famously wrong before, particularly with respect to Australian housing prices, yet at the time he made that ill-fated prediction, the impact of China's massive economic stimulus on the strength of Australia's resource-exporting economy was an unknown factor. China's stimulus worked to significantly boost Australia's economy in 2009 and 2010, helping the nation to avoid falling into recession at that time, which in turn, also helped sustain housing prices.
The rapid deceleration of China's economy today as the remnants of that previous stimulus effort evaporate provides a good argument in support of why a recession in Australia's future has become increasingly likely at this time.
It will be interesting to see what factors might intervene to either forestall or accelerate that scenario. Having gone 25 years without an official period of recession, Australia certainly has lived up to its reputation as the "Lucky Country" through this point in time.
Update 30 March 2016 9:46 PM EDT: Steve Keen e-mails a clarification - the output variables in the tool above have been reidentified as nominal and real aggregate demand growth rates rather than as GDP growth rates. It's a subtle difference, but a distinct one that better describes the tool's output!
Labels: debt, gdp, gdp forecast, recession, recession forecast, tool
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.