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
In terms of jobs gained, October 2011 appeared to be the best month for young adults (Age 20-24) since the United States economy peaked before entering into recession in December 2007.
The October 2011 Employment Situation Report indicates that the number of employed individuals between the ages of 20 and 24 increased to 13,357,000, up 285,000 from the previous month.
In fact, that's the third largest month-over-month increase for Age 20-24 individuals ever recorded. Only January 1990's increase of 864,000 over December 1989 and June 1983's increase of 357,000 over May 1983 are higher.
As such, we strongly suspect that gain in the number of employed is somewhat of a statistical outlier, perhaps strongly affected by sampling errors in the surveyed data. We're not certain however, given that almost all of the improvement in the past several months has been concentrated within this age grouping.
If it is a real phenomenon, we'll have to ask why have individuals in this age range have seemingly and suddenly become so attractive to employers, especially as compared to individuals of all other ages? A ramp up in part-time hiring in advance of the holiday shopping season might explain it, but if that's the case, we can look for lots of disappointment beginning in early 2012 if the economy begins sputtering as expected.
Speaking of individuals in of all those other ages, the October 2011 jobs data for teens (Age 16-19) and adults (Age 25+) was much more lackluster. Teens saw their numbers in the U.S. workforce increase by just 45,000, while adults saw their numbers fall by 53,000.
On the whole, October 2011 saw a net gain of 277,000, with the overall unemployment rate falling to 9.0% from 9.1% in September 2011. We'll know as early as next month if the data for young adults this month is real or if other factors have influenced the recorded data.
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.