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 boss1, in his usual pithy way, sets the stage:
OBAMA MATH: $250,000/year for a couple is "rich," but $172,000/year for a White House flunky is "relatively modest."
It occurs to us that we have the ideal tool to determine where, by President Obama's standards, the annual income needed to be considered "rich" begins. Or perhaps more appropriately, the annual income the President believes to be where "relatively modest" ends! We ran it with both $172,000 and $250,000 entered into it, which we're including here so you can get directly in on the fun too!
Using the tool, we find that an individual with an income of $172,000 would be in the 98.35th percentile of all individual income earners in the United States (at least, in 2009), while an individual with an income of $250,000 would earn more income than 99.48% of all income-earning Americans.
By contrast, the median annual income for individuals in the U.S. in 2009, the most recent year for which the U.S. Census has reported this data, is $26,134. The median income is, by definition, the amount of money that 50% of all income earning Americans either made less than or made more than during 2009. (Note: our tool slightly overestimates the median mark, estimating it to be $26,260.)
But wait! That doesn't take into account the super "cushy" benefits that government employees enjoy. The ones that, in 2008, averaged $40,785 per federal government employee. That compares with the average $9,882 amount of annual compensation benefits enjoyed by typical Americans.
Adding that average benefit value onto the President's idea of a "relatively modest" annual salary of $172,000 produces a combined annual compensation amount of $212,785. Plugging that number into the tool above suggests that this amount of compensation is higher than that of 99.11% of all Americans!
So, by the President's standards, people who earn more money than 99.11% of all other Americans are people with "relatively modest" incomes.
Expressed differently, this result indicates that an individual can be counted among the Top 1% of all individual income earners in the United States and still be considered to be earning a "relatively modest" income by President Obama.
Coincidentally, according to John Quiggin, the total amount of income earned by all individuals included among the Top 1% of U.S. income earners is about equal to the amount of government spending planned by President Obama!
We stand by our basic assessment that Barack Obama is not a smart man when it comes to money. And quite possibly, if we consider the amount of spending he plans and combine those very large numbers with this discovery of how human perception of values becomes distorted when very large numbers become disconnected from any sense of scale on a human level, we can perhaps finally understand why.
1 Not really (check the date of the linked post to understand why!) But please do copy and paste the permalink for this post for use in the tool in the linked post if you'd like to incorporate the resulting Instapundit-style HTML code into your own blog post!
Labels: income distribution, tool
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.