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 first wrote about Hauser's Law in 2009. At the time, we described it as "one of the stranger phenomenons in economic data". The law itself was proposed by W. Kurt Hauser in 1993, who observed:
No matter what the tax rates have been, in postwar America tax revenues have remained at about 19.5% of GDP.
In 2009, we found total tax collections the U.S. government averaged 17.8% of GDP in the years from 1946 through 2008, with a standard deviation of 1.2% of GDP. Six years later, we revisited it once again and found that while the standard deviation was the same, average total tax collections from 1946 through 2018 was lowered to 16.8% of GDP because of 2013's comprehensive revision of GDP that significantly boosted historic GDP estimates after the basic GDP formula was redefined.
Seven years later, we're revisiting the historic data once again to see if it still holds. Spoiler alert: it does!
Here's a triple-set of charts to show off Hauser's Law in action!
Since we're now spanning 80 years worth of data, during which the U.S.' maximum income tax rate has ranged between 28% and 92% of income, we confirm once again that the U.S. government's total tax collections have averaged 16.8% with a standard deviation of 1.2% of GDP from 1946 through 2025. If you know your normal distribution bell curve from statistics, that means over 99% of the U.S. government's total tax collections from 1946 through 2026 would be expected to fall between 13.2% and 20.4% of GDP, which they have.
The pattern also holds true for U.S. personal income tax collections, although here, the average is 7.7% of GDP and the standard deviation is 0.8% of GDP.
What all these numbers mean is that the U.S. government's tax collections have been remarkably stable as a percent of GDP, or the national income, over the last eight decades, regardless of how the top income tax rate has been set. We think that represents a political equilibrium, especially as higher rates of tax collections have not been able to be sustained.
There are just four periods where tax collections rose more than one standard deviation above the mean level, none of which proved to be sustainable.
There's one final piece of the puzzle we haven't tackled, and that's why the U.S. national debt has grown so large even as federal tax collections have been so relatively stable. Here we find three factors that have contributed to its growth:
And that, in a nutshell, is why the U.S. government has gone from running mostly balanced budgets in the years before 1965 to running consistently in the red in the years since with few exceptions. The upward ratcheting of government spending in the years since 1965, and particularly since 2008 to levels far above what the U.S. government is capable of sustaining through its stable tax collections is why the national debt has grown to exceed $40 trillion.
Labels: data visualization, taxes
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.