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 thinking about the history of federal minimum wage increases in the U.S. this morning, when we had a flash of inspiration: we thought of a way we could illustrate how the rate of unemployment in the U.S. might have changed in response to changes in the minimum wage in the overall context of the health of the U.S. economy at the time they occurred.
How you ask? Easy! We took our dividend data for the S&P 500 and calculated the year over year change in its rate of growth after adjusting it for inflation. We then assigned the result a score of either +1 when the year over year change in real dividends per share was positive or a score of -1 when the year over year change was negative.
That provides a framework against which we can present the results of a similar exercise for changes in the year over year rate of unemployment, assigning a positive score when the unemployment rate fell or a negative score when the unemployment rate rose. We could then identify the milestones for when the federal minimum wage increased.
We presented what we found in the accompanying chart for the years where we have monthly unemployment data, from January 1948 through September 2009 (the first data point covers the year over year period from January 1948 through January 1949, the next data point spans February 1948 through February 1949, and so on....) We've also tweaked the positive and negative scores of the dividend slightly to offset it from the unemployment changes to make it stand out more.
Here's how the analytical part works. When the U.S. economy is healthy, the stock market's dividends per share will rise and the rate of unemployment will fall. On our chart, that's indicated by the situation where both the year over year changes in dividends and unemployment have scored a positive value. It's during these times that we would expect that the U.S. economy can absorb an increase in the minimum wage.
When both these scores are negative, that likely corresponds to a period of recession or stagnation for the U.S. economy. This would correspond to a period in which raising the minimum wage would aggravate the unemployment situation.
Finally, there is the situation where the two measures are out-of-sync with one another. This indicates a period in which the economy is relatively weak. In these circumstances, if the U.S. economy is not in recession, raising the minimum wage might indeed spark enough job loss to push the U.S. into recession.
Examining our chart, we find the following:
The takeaway from all this is that when the U.S. Congress acts to increase the minimum wage, this action either directly coincides with the loss of jobs in the U.S. economy one-third of the time or with the continuance of job losses for another one-third of the time. And one out of five times, these job losses occur despite economic growth as indicated by growing stock market dividends.
Worse, since the U.S. Congress has historically acted to pass minimum wage increases in periodic batches, with increases occurring at annual intervals following the first increase of the batch, the situation of these additional minimum wage tend to represent an ongoing worsening of the employment picture.
So the bottom line answer to the question we asked in the post title is very likely "Yes."
Update 29 October 2009: We replaced the original chart we included with this post with the much prettier one you now see above!
Labels: economics, minimum wage, politics
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.