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
Let's get all the good news for jobs in the U.S. in March 2012 out of the way first, shall we? Here it is, in bullet point format:
That's pretty much all the good news in the March 2012 report. Let's look next at the household survey portion of the report to get a sense of the rest of the story, beginning with the breakdown of how the various age groups we regularly track are faring.
We see in our chart showing how the number of teens (Age 16-19), young adults (Age 20-24) and adults (Age 25 and older) in the U.S. workforce has changed since the total level of employment in the United States peaked in November 2007 just ahead of the most recent recession, that both the number of teens and young adults fell during March 2012, more than offsetting the gains of U.S. adults.
Here, we seen that the number of employeed U.S. teens fell by 36,000 from February 2012 to March 2012, with the total of 4,335,000 teens recorded as having jobs in March 2012 being 1,592,000 lower than the level recorded in November 2007. We also see that there has been no sustained improvement in the employment situation for U.S. teens since January 2011, and for all practical purposes, since June 2010 which marks the official end of the December 2007 recession.
Meanwhile, the recent trend of job gains for young adults (Age 20-24) appears to have stalled and perhaps reversed. Prior to March 2012, U.S. young adults had been a major beneficiary of the job gains that have been recorded since September 2011.
Likewise, the recent trend of improvement for U.S. adults (Age 25 and older) appears to have sharply decelerated in March 2012. Here, the large net changes recorded for this age group since October was greatly diminished, falling from the recorded month-over-month gains of 445,000 (November 2011), 200,000 (December 2011), 705,000 (January 2012, affected by the BLS' Census-related statistical adjustments) and 386,000 (February 2012).
The March 2012 jobs data would seem to confirm that the U.S. economy has indeed begun to decelerate after growing strongly, as we have been expecting. We would be seeing a very different picture for jobs in the U.S. if the economy were genuinely gaining steam across the board.
Which is perhaps why many observers, such as Reuters' Felix Salmon, were so unpleasantly surprised - the March 2012 jobs data is sharply contradicting the media's latest narrative!
Labels: jobs
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.