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
September 2024 saw the seasonally-adjusted number of employed teens rise in the U.S. economy after having declined in each of the three previous months. The seasonally-adjusted number of employed teens Age 16-19 increased by 231,000 to 5,624,000.
Most of that increase took place among younger teens Age 16-17, whose numbers increased 159,000 to 2,193,000. Older teens Age 18-19 experienced a much smaller increase, with their totals increasing by 71,000 to 3,398,000.
If you're following along at home, you'll notice the numbers for each of these demographic subgroups don't quite add up to the total for the combined group. That's because the Bureau of Labor Statistics applies unique seasonal adjustment factors to each of these data series. If you want numbers that do add up, you'll need to pull the non-seasonally adjusted data for each demographic group. When you do, you'll find the following for the initial employment estimates for September 2024:
The reported total for the Age 16-19 is 1,000 less than what you would get by adding numbers of employed 16-to-17 year olds to the number of employed 18-to-19 year olds, but that's attributable to rounding errors resulting from the BLS' practice of reporting the employment numbers to the nearest thousand.
Although all the changes in the unadjusted employment figures are negative, the seasonally adjusted numbers are all positive because the decline in September 2024's teen payrolls was smaller than is typical for the regular seasonal pattern for teen employment. Teen employment spikes upward from May through July each year before falling back in August through October as many teens leave the workforce and return to school after their summer break. The seasonal adjustments applied by the BLS take this regular pattern for teen employment into account in smoothing out the seasonal swings in the number of employed teens
The following pair of charts shows the trends for the seasonally-adjusted teen employment and the teen employment-to-population figures from January 2016 through September 2024.
Both charts show that even with the seasonally-adjusted rebound, teen employment levels in September 2024 are well off their peaks from earlier in the year. As rebounds go, it's welcome but not enough to offset the declines.
U.S. Bureau of Labor Statistics. Labor Force Statistics (Current Population Survey - CPS). [Online Database]. Accessed: 14 September 2024.
Image Credit: Microsoft Copilot Designer. Prompt: "An editorial cartoon of a single high school student looking exhausted on their first day back to school, reminiscing about their summer job". We think the generated image conveys more boredom at being back in school than it does exhaustion, but that kind of fits the experience a lot of teenagers have.
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.