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
When did the U.S. economy really recover to its pre-recession level?
If you go just by the nation's Gross Domestic Product (GDP), the answer is yes - after accounting for inflation, it recovered to its pre-recession peak back in the middle of 2011. Our first chart below, which also shows the values of GDP that our Modified Limo and Climbing Limo inertial forecasting methods have forecasted to be anywhere from three to nine months ahead of time, shows how real GDP was recorded in each quarter from 2006-Q1 to the present.
In examining this chart, we see that real GDP recovered to its prerecession levels in mid-2011. The national income would then seem to have gone on to grow over a trillion dollars more beyond that $14,991 billion figure (in terms of constant 2009 U.S. dollars).
But as one of our readers noted in an e-mail: "A $13 trillion GDP with 300 million people is more than $14 trillion GDP with 320 million."
So how differently would the U.S.' economic recovery look if we measured it on a per capita basis rather than just on raw GDP?
To find out, we tapped the U.S. Census Bureau's intercensal population estimates and projections to calculate the Real GDP per Capita over the same period of time in our chart. And for the sake of consistency, we redid our forecasts using these measures. Our second chart presents our results.
Going by this measure we see that it wasn't until the third quarter of 2013 that the U.S. economy really recovered to its pre-recession level. And then, it has only been since the second quarter of 2014 that it has grown beyond that level.
The interesting thing is that tracking the GDP per capita measure this way would more closely match the perceptions of the American people regarding the overall health of the U.S. economy. Say as measured by the University of Michigan's Consumer Sentiment Index, which returned to its prerecession levels just a few months ahead of real GDP per capita.
Contrary to what at least one particular economist and his fellow travelers might think about their cognitive abilities and financial literacy, regular Americans would seem to be pretty capable of collectively assessing the real condition of the U.S. economy.
Labels: gdp, gdp forecast, recession
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.