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 economic books on 2007 closed today, with the U.S. Bureau of Economic Analysis' final release of GDP data for the fourth quarter of 2007. There was very little change from the advance and preliminary estimates, as all came right around 0.6% for an annualized rate growth over a one-quarter period and 2.7% for an annualized rate of growth over a two-quarter period, so we'll go straight to our GDP bullet charts:
The top GDP bullet chart above shows the annualized growth rates that you'll see in most mainstream media reports, which only considers the rate of economic growth over a one-quarter period, for which the chart depicts the results for the three most recent periods. The bottom GDP bullet chart goes a step further, showing the rates of GDP growth over a two-quarter period of time for the three most recently ended quarters, and therefore, effectively covers the entire past year.
On both charts, these individual data points are illustrated against the backdrop of what's been typical of economic growth in the U.S. since 1980, in the form of the temperature color scale. We can see that on the one-quarter bullet chart, that the fourth quarter of 2007 dipped into the cold end of the chart, while the two-quarter rate of growth falls between the cool (blue) and moderate (green) growth range.
The two-quarter data is especially important as it provides the means by which we can project where GDP will be in the future. The next chart shows our projections using both the Climbing Limo method developed by the Skeptical Optimist, which looks three quarters ahead in time, and our tweaked Modified Limo technique, which only looks ahead toward the next quarter:
With Real GDP coming in at $11,675.7 billion in Year 2000 dollars for the fourth quarter of 2007, we would anticipate that Real GDP for the first quarter of 2008 would come in at the following levels for each of our various forecasting methods:
Projected Values for Real GDP, 2008-Q1 | |||
---|---|---|---|
Forecasting Method | Projected Real GDP [billions 2000 USD] |
One-Quarter Annualized Growth Rate from 2007-Q4 |
Real GDP Data Used to Make Projection |
One-Quarter Projection (BEA) | 11,672.5 | 0.58% | 2007-Q3 and 2007-Q4 |
Climbing Limo Projection | 11,709.6 | 1.17% | 2006-Q4 and 2007-Q2 |
Modified Limo Projection | 11,754.8 | 2.74% | 2007-Q4 and 2008-Q3 (Climbing Limo Projection) |
The data used to create the 2008-Q3 Climbing Limo projection for the Modified Limo technique are the Real GDP figures for 2007-Q2 and 2007-Q4.
Going back to our GDP forecast chart, we note that we see a sharp decline in what the Climbing Limo method would project from 2008-Q2 to 2008-Q3. This effect is driven by a sharp change in recorded GDP levels from previous quarters, which in turn tells us that the one-quarter projection, which we obtain simply by extending the performance of the most recent quarter-over-quarter period one quarter ahead, is likely to be the closest to what the actual figure will be that we should also expect that it will come in below this value.
Given that low value of 0.6%, we would therefore anticipate that Real GDP will be between 0.0 and 0.6%.
It might not be a recession, but there's no denying that economic growth in the U.S. is dragging.
Labels: 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.