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
According to the December 2012 employment situation report, job growth stalled out in the final three months of 2012, as the number of employed Americans (143,305,000) was nearly unchanged from the levels recorded in the previous two months.
That outcome is consistent with our earlier observation that the fourth quarter of 2012 would likely see a significant deceleration in economic activity following the comparatively robust pace of growth recorded in the third quarter.
Breaking down the employment situation by age groups, we find that the number of employed teens (Age 16-19) fell by 66,000 from November 2012 to December 2012 to 4,402,000 as the number of young adults (Age 20-24) declined by just 25,000 over the same time to 13,570,000. Meanwhile, the number of employed individuals Age 25 and older increased by 119,000 from the previous month to reach 125,333,000.
The latest employment situation report revises all the employment data obtained in the seasonally-adjusted household survey portion of the report going back to January 2008 to account for updated seasonal factors, which is typically done with the December jobs repot each year. Our chart in this post reflects these revisions, which affect the period of time in which the U.S. economy first went into recession (it peaked in December 2007 and began declining in the months afterward) and its subsequent recovery.
Perhaps the most remarkable aspect in the chart above is that there has been no effective improvement in the employment situation for U.S. teens since the recession officially ended in June 2009. In fact, since October 2009, which marks the effective end of the decline in the number of employed teens, the number of working teens in the United States has held level at approximately 4,382,000, plus or minus 152,000 teens, in all the months since.
As such, the disappearance of jobs for U.S. teens represents a very large share of the jobs gap that has restrained the recovery of the U.S. economy.
On a final note, the January 2013 employment situation report, set to be released on 1 February 2013, will reflect more substantial revisions to both the establishment and household survey portions of the report, with the household survey portion being updated to account for the U.S. Census Bureau's annual update of the U.S. population. Data from December 2012 or earlier will not be likewise adjusted, which may make direct comparisons between data being released in 2013 and data from earlier years really problematic.
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.