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
Here are the values that need to be entered into the tool below to coincide with the actual levels of government spending cuts, expected tax increases and the Fed's quantitative easing that took place in the first quarter of 2013, per the BEA's third estimate for GDP for the quarter and the change in the Fed's total asset holdings over the quarter (as measured by the change in the Fed's total assets from 26 December 2012 to 27 March 2013) and our earlier estimate of the expected increase in tax collections for the quarter:
We've updated our tool in this post with these values:
You shouldn't be surprised to find that we come very close to the BEA's third estimate for GDP in 2013-Q1 of $15,984.1 billion in the tool above with these values, as our tool's results are nearly within 0.05% of it. If the amount of the Fed's quantitative easing in 2013-Q1 totaled up to $303.4 billion, our estimated GDP multiplier of 1.0 for QE would be dead on target.
What that means is that there isn't much of a multiplier effect for the economy from quantitative easing - it basically boosts the economy by $1 for every $1 worth of quantitative easing the Fed does. It does however make a positive contribution to GDP and it can clearly offset the impact of expected fiscal policy shocks.
In fact, as our tool demonstrates, if not for the effect of the Fed's amped up QE program in the first quarter of 2013, we would be discussing the United States' new recession instead.
Image Credit: North Dakota (ND.gov) Youth
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.