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
Now that we've established what the relative purchasing power of a dollar is in each of the United States, we're going to apply that information today to solve one of the great problems of our time: how to set the minimum wage in each state in order to achieve purchasing power equality.
After all, it goes against the ultimate liberal ideals of fairness and equality of outcomes if, thanks to nothing other than the relative cost of living in each state, that a minimum wage earner in Mississippi is able to buy more things with their earnings than can a person earning the identical wage in a high cost of living state like New York.
Clearly, in the interest of fairness and of achieving purchasing power equality, the minimum wage in each state needs to be adjusted in such a way that a person who earns the minimum wage in each state can buy no more and no less than the same amount of real goods and services. That's the great problem for society that we'll be solving today.
Let's start by examining the applicable minimum wage that applies to each state in 2012, the year for which we have the relative purchasing power data, which is the greater of either the state's own minimum wage or the federal minimum wage of $7.25 per hour. That data is directly encoded in the interactive map below:
Next, let's calculate what each state's minimum wage would have to be so that the individual's who earn it will have an equal amount of purchasing power, regardless of the state in which they might live. Here, we've used the federal minimum wage of $7.25 per hour as the benchmark for calculating the minimum wage levels in each state that would achieve purchasing power equality across the entire nation.
Finally, we calculated how much each state would need to adjust their minimum wage levels in order to realize the very achievable dream of purchasing power equality for minimum wage earners throughout the United States.
What this exercise demonstrates is that if one really cares about achieving equality, it makes absolutely no sense to impose a national minimum wage, which we observe produces the situation where the minimum wage earners in some states are considerably worse off than individuals earning the same wage in lower cost of living states - the very essence of income inequality and unfairness.
Labels: data visualization, economics, income inequality, minimum wage, satire
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.