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
Since April 2010, U.S. stock prices have been signaling investors' expectations that the U.S. economy will enter into a period of contraction at some time in 2011, most likely in the latter half of that year. Today, we'll take a look at the much closer future in taking a look at where U.S. GDP can be expected to fall for the just-finished second quarter of 2010, which will help provide a better sense of the contrast between the economic situation Americans are experiencing today with what they anticipate for the future.
To do that, we'll be taking advantage of the recently finalized GDP data for the first quarter of 2010, along with our Modified Limo GDP forecasting technique.
For the first quarter of 2010, that technique came within 0.3% of perfectly anticipating the level of GDP, with a predicted GDP level of $13,276.5 billion versus the finalized figure of $13,238.6 billion. Both values are adjusted for inflation and are given in terms of constant 2005 U.S. dollars.
Our forecast GDP would have to be within 2.0% of the recorded final value of GDP for a given quarter to be considered to be a correct prediction.
Using that latest data, we anticipate U.S. real GDP for the second quarter of 2010 will fall into a range between $13,107 billion and $13,642 billion, with a target value of $13,374.8 billion. To help narrow that down, we would give a roughly 70% probability that 2010-Q2's real GDP for the U.S. will fall between $13,234 billion and $13,516 billion.
Although we don't normally report GDP growth rates, given their extreme sensitivity to small changes in recorded quarterly GDP levels, the target value of $13,374.8 billion would represent an annualized growth rate of 4.2% for the second quarter of 2010.
For evidence supporting that optimistic outlook, we would point you to Mark Perry's posts for April, May and June 2010, as they document much of the positive nature of the economic data that has been recorded throughout the quarter.
It is unlikely however that this solid economic performance will significantly boost employment levels or stock prices anytime soon, as both these economic measures are largely affected by future expectations for the U.S. economy, which remains negative.
Or as they say, "past performance may not be indicative of future results."
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.