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
We were inspired by King Banaian's recent Graph of the Day showing the post-peak change in employment to dig deeper into the most recent jobs decline. Specifically, we wanted to see if any one particular age group was being disproportionately impacted by the recent downturn.
Unfortunately, we couldn't dig very far into King's data - he was looking at the change in Non-Farm Payroll employment figures since they peaked in December 2007, for which the data is not broken out by age group.
But we could dig deeper using the BLS' archived data for the total employment figures, which specifically breaks out the employment data for those Age 16-19 in the monthly employment situation reports! Here, total employment in the U.S. peaked in November 2007 at 146,647,000 employed individuals, of which, 5,832,000 are between Age 16 and 19, or just under 4.0% of the total.
For reference, the U.S. unemployment rate in November 2007 stood at 4.7%. As of August 2008, the unemployment rate has risen to 6.1%. The chart below shows the post-peak employment change in the number of employed individuals for these months, and each month in between:
As of August 2008, we see that the total U.S. workforce has declined by 1,170,000 since peaking in November 2007. We also see that 269,000 of this figure is accounted for by a decline in the number of teens Age 16-19 in the U.S. workforce, or 23% of the total numerical decline in the recorded data. A pretty remarkable accomplishment for a group that represents just 4.0% of the total!
There's more to this story as teen jobs have been in decline since they peaked in May 2006, but we'll cover that in an upcoming post....
Update 24 September 2008: Corrected quantities and chart! Here's the original paragraph we've since edited:
As of August 2008, we see that the total U.S. workforce has declined by 931,000 since peaking in November 2007. We also see that 269,000 of this figure is accounted for by a decline in the number of teens Age 16-19 in the U.S. workforce, or 30% of the total numerical decline in the recorded data. A pretty remarkable accomplishment for a group that represents just 4.0% of the total!
The original chart is here....
Labels: demographics, unemployment
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.