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
On 3 October 2011, we offered the following forecast for where GDP in the third quarter of 2011 would be recorded:
Assuming that the deviation between our modified limo forecast value and actual GDP can be described by a normal distribution, we estimate a 68.2% probability of the BEA recording real GDP for 2011-Q3 somewhere between $13,160.1 billion and $13,439.5 billion, and a 95% probability of it falling between $13,020.4 billion and $13,579.2 billion. There is a 99.7% probability of 2011-Q3's GDP figure being recorded somewhere between $12,880.8 billion and $13,718.8 billion.
Although only the first advance estimate of GDP for 2011Q3 has been released so far, here's the tale of the tape:
Real GDP in 2011-Q3 was well within our forecast range, as the advance estimate for U.S. GDP in the quarter is $13,352.8 billion (in terms of constant 2005 U.S. dollars). Compared to the midpoint of our forecast range, $13,299.8 billion, the advance estimate for 2011-Q3 real GDP was just 0.4% higher.
Using the advance GDP estimate for the third quarter of 2011, which will be revised at least twice more before being "finalized" (pending later revisions), we can reasonably project that the inflation-adjusted value of U.S. GDP for the fourth quarter of 2011 to be between $13,275.3 and $13,556.7 billion (in terms of constant 2005 U.S. dollars). We estimate a near-70% probability of 2011-Q4 GDP falling between these values.
We project a 99.7% likelihood that 2011-Q4 GDP will be between $12,994.0 and $13,838.0.
On a technical note, we will revise our forecast when the third estimate of 2011-Q3 GDP is released in two months time.
Overall, the U.S. economy is continuing to perform as expected. We anticipate that growth will continue at a similar pace to 2011-Q3 through the end of the year, however we expect that the U.S. economy will begin to slow significantly in the second quarter of 2012, based upon dividend futures data for the S&P 500.
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.