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
Now that the U.S. Bureau of Economic Statistics has published its third and final, for now, estimate of GDP for the second quarter of 2012, we can use our "modified limo" forecasting technique to project approximately where GDP will be recorded for the third quarter of 2012!
Our chart below shows how our inertia-based forecasting method has done since 2004:
At present, we anticipate a 50% chance that real, inflation-adjusted GDP will be recorded above $13,602 billion in terms of constant 2005 U.S. dollars for the third quarter of 2012, and conversely, a 50% chance that GDP will be recorded three months from now at a value below that figure.
To narrow in on where 2012-Q3's GDP will actually be recorded, we estimate the following odds:
Although we're coming off a quarter where the U.S. economy could reasonably be described as being in a "microrecession", as we had long expected, we anticipate that the GDP growth rate will be stronger in the third quarter of 2012 by comparison. Going by the dividend futures data we've had available since November 2011, the third quarter of 2012 has always looked as if it would be the strongest in 2012. Much like how the second quarter of 2008 was the strongest quarter in that year, even though the U.S. economy had already peaked and had begun falling into recession earlier in December 2007.
That head of steam coming out of 2012-Q3 will dissipate however and a reversal in economic momentum will increasingly become evident now that we're in the fourth quarter of 2012. Our outlook for 2013 does not look good.
As a final note, because our "modified limo" forecasting method is an inertia-based model, it is least accurate when the economy goes through a severe turn, either toward recession or toward recovery. Although it will eventually self-correct as the economic situation stabilizes, any large deviation from our forecasts still communicates a wealth of information about the changing health of the U.S. economy and may be used to confirm the onset of a new recession or recovery, long before the NBER gets around to making any official pronouncements.
Labels: gdp, gdp 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.