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 employment situation for American teens picked up in October 2023.
Adjusted for seasonality, the number of working Age 16-19 year olds increased over September 2023's level, from 5,570,000 to 5,685,000. Within the teen population, the increase was concentrated among older teens (Age 18-19), while younger teens saw a smaller tick upward.
At the same time, the percentage of working teens within the Age 16-19 population also rose. The following charts present the latest seasonally adjusted numbers and percentages for teen employment in the U.S. in addition to the preceding 8+ years of monthly data. Since the Bureau of Labor Statistics puts each data series through its own seasonal adjustment, the employment figures shown in these charts for the subgroups within the teen population will not necessarily add up to the combined total.
The BLS' raw, non-seasonally adjusted data does however, so here are those numbers for October 2023, along with their change from the previous month:
By contrast, the number of working Americans Age 20 or older decreased by 187,000, falling from 156,349,000 to 156,162,000 between September and October 2023. After adjusting for seasonality for that part of the U.S. civilian labor force, the BLS reports the number of Age 20+ individuals with jobs dropped by 463,000, decreasing month-over-month from 156,000,000 to 155,537,000.
Looking at the bigger picture, the BLS also reported the overall unemployment rate increased to 3.9% in October 2023, which apparently is enough to trigger the "ultra-reliable" Sahm rule, in which the national unemployment rate rises by at least half a percentage point above its lowest figure in the preceding 12 months, which often precedes periods of recession.
For what it's worth, its creator, Claudia Sahm, thinks it might not be as accurate an indicator for the current economic situation as it has been in the past. We think October 2023's data for teen employment supports that assessment and combined with unique factors like the UAW's month-long strike against U.S.-based automakers, can argue it is more noise than signal for describing the state of the economy in October 2023.
As always, the real question is how will the numbers change when next month's data is reported? We'll all find out soon enough.
Image credit: Modified from 'We Are Hiring' sign photo by Eric Prouzet on Unsplash.
Labels: demographics, 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.