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
There are two Californias. There is one where adults (Age 20 and over) are gaining jobs at a rate that's slightly faster than was the case in the years before the December 2007-June 2009 recession in the U.S.
And there is the one where teens (Age 16 to 19) are falling further and further behind in the job market.
The data in both charts is the trailing twelve month average for non-seasonally adjusted data. Taking the trailing year average of this data allows us to account for the effect of seasonality in the data.
California increased its minimum wage from $6.75 per hour to $7.50 per hour on 1 January 2007. The effect upon teens in the labor market was minimal since California's economy was still growing, which allowed employers to somewhat offset the 11% increase at the time. That said, instead of keeping pace with the job market for adults, we see that the employment situation for California's teens basically flatlined during 2007. We also see that the number of employed teens began falling in the months prior to the minimum wage increase, as employers anticipated the hike.
California increased its minimum wage from $7.50 per hour on 1 January 2008. Once again, the job market for adults was little affected, with the number of employed Age 20+ Californians growing through July 2008 before finally being negatively impacted by economic contraction and its associated deflationary pressures.
By contrast, the employment situation for Californians teens began deteriorating rapidly after the higher minimum wage was imposed, with the rate of decline in the number of employed teens in the state not decelerating until September 2010 - one year and three months after the recession in the U.S. ended, before beginning to decline at a much slower pace.
Meanwhile, adult Californians saw their job market turn around months earlier, growing at a pace similar to that from before the recession through July 2011, then at a faster pace afterward.
The job market for teens in California didn't bottom out until January 2012, then began recovering at a much slower pace than that for adults. That slow rate of improvement lasted through December 2013. Since January 2014, the trailing twelve month average for the number of employed teens in California has been falling in the months in advance of the state's next minimum wage hike from $8.00 per hour to $9.00 per hour on 1 July 2014.
Throughout all this time, California has been home to one out of 8 teens in the United States. In January 2005, one out of 10 employed teens in the U.S. lived and worked in California. In May 2014, one out of 12 employed teens in the U.S. lived and worked in California.
Americans between the ages of 16 and 19, by the way, make up approximately 25% of all individuals who earn the minimum wage in the United States.
Labels: demographics, jobs, minimum wage, recession
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.