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
According to Forbes, Oprah Winfrey earned approximately $290 million in 2010.
That is, quite possibly, the highest income earned by any American in 2010. Going by data from the Social Security Administration, only 81 people in the United States had wage or salary income above $50 million in 2010. Since we can safely assume that most of those individuals at this highest end of the income spectrum would be clustered near the $50,000,000 mark, the odds that Oprah Winfrey actually earned the highest income of anyone in the U.S. in 2010 are very good.
It's all the more remarkable because of how Oprah Winfrey derives her income: by developing and providing entertainment media that successfully targets American women. In a sense, Oprah's annual income represents the direct transfer of the income earned by lower-earning women to her.
To get a sense of the scale of that transfer, we've tapped the U.S. Census' data on the total money income distribution of women in the United States in 2010. Our results are presented in the chart below:
If you're one of the 125,084,000 American women Age 15 or older who earned income of any type in 2010, you can see how you compare with all other women by entering your 2010 income into the tool below. Our tool will tell you what percentage of American women earn as much, or less than you!
The default income entered in the tool is the approximate median total money income for all women Age 15 or older in the U.S, regardless of whether they work full or part time, or even if they don't work at all or simply volunteer and earn no income. As the estimated median point, half of all women in the United States will have incomes below this mark, while half will have incomes above that amount!
Of course, if you're Oprah, you'll find that 100% of American women earned as much, or less than you. Make that "much less" than you!
We'll close with one final tidbit of information. Oprah Winfrey's estimated $290 million income in 2010 represents 0.0092% of all the income earned by women in the United States in 2010.
The inset images on our chart were taken from the U.S. government's Homelessness Resource Center and Girlshealth.gov web sites!
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.