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
The Bureau of Labor Statistics has released its latest jobs report, with the establishment portion of the monthly survey for September 2007 for the civilian labor force showing a net job gain of 110,000 from the revised figures for August, and also an increase of 37,000 in the number of government workers. The household portion of the jobs survey indicated a net job gain of 463,000.
The latest employment report from payroll processor ADP indicated a private sector increase of 58,000 non-farm jobs.
Plugging all these numbers into our weighted average job gains and losses tool, and using the weighting factors suggested by Econbrowser's James Hamilton, suggests that the change in overall employment levels from August 2007 to September 2007 is an increase of 172,100 overall.
What's really remarkable however is that the employment figures for both July and August were both revised upward. Instead of a previously reported increase of 68,000 jobs, July actually saw payrolls increase by an additional 25,000 people for a total increase from June of 93,000 jobs.
Meanwhile, August 2007 saw a massive upward revision in the number counted jobs. The BLS had previously stated that the civilian labor force had actually declined by 4,000. The newest jobs data release now shows a net gain of 89,000 jobs for that month.
Interestingly, Barry Ritholtz, who reported the consensus forecast for an increase of 115,000 in the civilian labor force for the month of September found the report to be largely in line with expectations (the reported net change of 110,000 coming in just 5,000 below this figure.) It would seem however that he missed that these job gains came on top of the large upward revisions (25,000 + 93,000) for both July and August.
Steve Conover looks past the month-to-month volatility in jobs data and shows where the year over year changes in jobs have been!
Jim Hamilton has weighed in on the numbers and suggests some more adjustment might be in order:
The September calculation comes to +179 thousand new jobs, driven by the very strong household number. Given the huge offsetting negative household number for August, I'm inclined instead at a minimum to take a two-month average, which comes to 93,000 per month. I believe that's about the right number for the two months, maybe pull August down a little and September up a little from that.
Meanwhile, King Banaian finds less to be enthusiastic about as total private employment was relatively unchanged.
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.