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 a CBO report, the top 1% of income earners saw a 275% increase in their inflation-adjusted, after-tax income between 1979 and 2007.
By our quick math, that 275% increase works out to be an annualized rate of change of 4.83% over the CBO's oddly cherry-picked 28 year period from 1979 through 2007 (click the links for the years to understand why).
By contrast, our S&P 500 at Your Fingertips tool indicates that if the Top 1% had just invested their after-tax income in an S&P 500 index fund in January 1979 and then let it ride to December 2007 as the stock market peaked, fully reinvesting dividends all that time, they would have seen an inflation-adjusted, tax-free rate of return of 8.70%.
And that's without even bothering to work! If taxed at the maximum 1979 capital gains tax rate of 28%, their after-tax income would represent an annualized rate of return of 6.26% annually. Or rather, a 448% increase in their inflation-adjusted, after-tax income!*
So clearly, the Top 1% were total suckers for even bothering to put their money to work at all doing those other things they apparently did during those 28 years that pushed their effective rate of returns down. Like work!
[* Not really, and for the record, the analysis presented in this post is wrong, on purpose, although we suspect that certain people who will be really irritated by this post won't be able to explain why. If it helps, sometimes, we post things just to upset certain people, who like to think they know it all, but who are really short in the mental horsepower department, among others!]
Labels: none really
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.