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
Believe it or not, it has been more than a year since we last provided a forecast for the level of GDP in the U.S. That's mainly because we've focused instead upon developing our model for anticipating where the stock market would go, but with news that the growth rate of real GDP reached 5.7% in the fourth quarter of 2009, we thought it might be fun to go back and fill in the gap for the interim!
What we've done then is to update all our quarterly data for GDP to be expressed in terms of chained 2005 U.S. dollars, to agree with the latest available data from the Bureau of Economic Analysis, and used it to recreate the GDP forecast according to Steve Conover's Climbing Limo method and our own refinement of that method, the Modified Limo.
Both methods utilize the GDP data from previous quarters for their forecasts. The Climbing Limo method then projects where GDP will be three quarters after the most recently concluded quarter, while the Modified Limo only looks forward to the next quarter. In a very real sense, the two Limo methods use the most accurate model of the future U.S. economy possible, the U.S. economy itself from the recent past, and applies the concept of inertia to it, projecting where it will be based upon the path it has been taking.
Our first chart shows how both methods fared as the U.S. economy went on wild ride from 2008 through 2009. We first observe that the Climbing Limo forecast swings wildly as the economy first turns south, then begins to rebound. This is an expected outcome since the Climbing Limo method projects the level of GDP so far into the future - when the economy is undergoing rapid transitions in going from boom to bust, the Climbing Limo method exaggerates the change.
Meanwhile, we observe that our Modified Limo approach minimizes the extent of much of these wild gyrations. What we see is that the Modified Limo forecast more closely approximates the actual changes taken by the U.S.' GDP.
The table below details the deviations we observe between the Climbing Limo and Modified Limo forecasts and the actual level of GDP recorded by the BEA as a percentage of the actual level of inflation-adjusted GDP. The data for the fourth quarter of 2009 is based on the BEA's advance estimate of GDP for that quarter (the "final" revision of that data will be released in March 2010.)
Actual Real GDP and Percentage Deviations for the Climbing Limo and Modified Limo Forecasting Methods | |||
---|---|---|---|
Year-Quarter | Real GDP [Chained 2005 U.S. Dollars] | "Climbing Limo" Forecast Percentage Deviation | "Modified Limo" Forecast Percentage Deviation |
2008-Q4 | 13,141.9 | 2.2% | 1.2% |
2009-Q1 | 12,925.4 | 4.1% | 0.6% |
2009-Q2 | 12,901.5 | 2.8% | -1.3% |
2009-Q3 | 12,973.0 | -1.8% | -1.5% |
2009-Q4 | 13,155.0 | -6.1% | -1.2% |
It would seem that our Modified Limo approach does a pretty good job in anticipating where real GDP will really go. So, to make it interesting, we're going to add our GDP forecasts to our list of predictions that we evaluate using our unforgiving plus-minus scoring method. So, for 2009-Q4, we'll anticipate that the final revised figure for real GDP that will be released in March 2010 will be within 2.0% of our predicted value of 12,996.9 billion chained 2005 U.S. dollars.
As for the level of inflation-adjusted GDP in the first quarter of 2010, we'd like to venture that real GDP in 2010-Q1 will be within 2.0% of the 13,284.9 billion chained 2005 U.S. dollars our Modified Limo would forecast based upon the advance release GDP data for 2009-Q4, but we can't as yet.
The reason why goes to the data needed to create the Modified Limo forecast. Here, the Modified Limo method uses the "finalized" data for GDP from the previous quarter to create its forecast, which won't be available for the fourth quarter of 2009 until March 2010. The 13,155.0 billion USD figure currently indicated by the BEA in its advance release is based upon still incomplete information, which makes it subject to change.
Fortunately, the timing on that works out perfectly for us - at the same time when we'll find out if our previous GDP prediction was correct in March 2010, we'll be able to create a new one to replace it!
Labels: gdp, gdp forecast
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.