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
First Trust's Brian Wesbury is predicting a remarkably positive GDP for the second quarter of 2008 (HT: Mark Perry):
Late next week the government will release initial estimates of real economic activity in the second quarter. Not long ago, in early April, when the quarter was just beginning, the consensus forecast for Q2 2008 real GDP growth was 0.0%, with as many economists predicting contraction as were predicting growth.
Now, three months later, the consensus is up to 2.2%. And no surprise - we are forecasting a 3% growth rate, more bullish than almost any other economist.
Here's what Wesbury anticipates will drive GDP to the high end of the forecasters' consensus:
Personal Consumption: We already have full consumption data for April and May as well as auto sales and retail sales for June. The only piece missing is June services. We estimate real consumption grew at a 2.0% annual rate in Q2. With consumption accounting for 70% of GDP, real PCE will contribute 1.4 points to real GDP growth (1.4 equals 70% of 2)."
Business Investment: Data through May show business investment in equipment and software was unchanged in Q2. However, business construction continued to boom, suggesting overall real business investment will grow at about a 6% annual rate in Q2. With business investment accounting for about 10% of GDP, this translates into 0.6 points for real GDP growth (0.6 equals 10% of 6).
Housing: Data on home building suggests a decline at about a 23% annual rate in Q2. Given that the sector makes up roughly 4% of GDP, this translates into a drag of 0.9 points on real GDP growth (0.9 equals 4% of 23).
Government: Federal defense spending and public construction at all levels of government were unusually strong, suggesting gov’t spending accounts for 0.5 points worth of real GDP rather than the 0.3 or 0.4 trend.
Trade: The inflation-adjusted trade deficit has been shrinking rapidly. Even assuming no additional improvement in June, net exports will add about 2.0 points to real GDP growth.
Inventories: We assume businesses around the country reduced stockpiles at an annual rate of $37 billion, the largest reduction since the 2001 recession," which Wesbury expects to alter real GDP by -0.6 points.
With the math laid out like this, getting to Wesbury's predicted GDP is just a matter of adding and subtracting these anticipated values. Here it is all laid out in formula form:
Real GDP = + 1.4 + 0.6 - 0.9 + 0.5 + 2.0 - 0.6 = +3.0
Not bad for this recession the major news media says we're in! Speaking of which, the next chart shows the probability that the U.S. is in recession today (calculated using data from one year ago!):
Meanwhile, Mark Perry sees a similar trend at work at Intrade's 2008 recession prediction market:
Odds of a 2008 U.S. recession have fallen to 17.4% on Intrade.com, from 70% in mid-April, and from about 33% just a week ago
Can there even be a recession if the growth rate of real GDP never turns negative? Perhaps there could be, given how badly far off the BEA's originally reported GDP figures were in 2000 from where they were later revised to be, which at the time, masked the extent to which the economy was sliding into recession during the course of that election year.
Who's to say that similar political considerations aren't skewing how the data is being reported today?
Labels: gdp, gdp forecast, recession 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.