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
It may surprise you, but since we first introduced the "Modified Limo" method for forecasting what GDP will be a quarter ahead of time, we've never gotten around to making a tool that you can use to do our math!
Today, we're fixing that problem and doing just that! To use our tool with U.S. data, you'll need to get three pieces of data from the Bureau of Economic Analysis, which you'll find in Table 3 of the most recent GDP data release the agency has issued:
Here, you'll be specifically interested in three values: the real GDP data for the three most recently completed quarters, which is what we've circled in the excerpted image above for the most recent report which, at this writing, shows the advance estimate of U.S. inflation-adjusted GDP through the first quarter of 2011.
Next, enter that data into the tool below. And then click the "Calculate" button. Really! That's all you need to do, because forecasting GDP is that easy!
Using our default data, which coincides with the BEA's third estimates for inflation-adjusted GDP in the U.S. for the second, third and fourth quarters of 2010, our "modified limo" method would anticipate that real GDP in the next quarter, 2011Q1, will be $13,475.2 billion chained 2005 U.S. dollars. As you can see from the BEA's advance estimate for the first quarter of 2011, that's really close to their number of $13,438.8 billion.
The real comparison however will be when the BEA releases its third estimate of GDP for the first quarter of 2011, which as of this writing, will occur on 24 June 2011.
While our math is built using the finalized estimates for each quarter's GDP recorded by the BEA, it can be used with the BEA's advance and preliminary estimates to get a sense of where GDP will be in two quarters time. Because these estimates can change however, you should expect that those future projections will change as well.
Our "modified limo" method is least accurate when the economy is effectively "going around a corner". By that, we mean when the economy begins to worsen after a period of growth or when the economy begins to improve after a downturn, which you can see in our chart showing GDP data since 2002 below:
You can also see in the chart above that over time, the "modified limo" technique is self-correcting. Even if it goes off target, it will eventually go back to be either on target or nearly so. Generally speaking, the "modified limo" estimate will almost always be within two percent of the actually recorded value.
The "modified limo" method works because of the "inertial" nature of GDP - it tends to follow a trajectory defined by a simple linear function of time. Ivan Kitov has a neat discussion of the data supporting that contention in 1000 Arguments Against the Solow Growth Model.
Labels: forecasting, gdp, gdp forecast, tool
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.