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
Which states are the most and least affordable places for American families to live after paying taxes and their essential expenses?
The Common Sense Institute tallied up the numbers and ranked each state after subtracting federal and state taxes and also essential expenses like housing, utilities, groceries, auto and health insurance, fuel, and childcare in each state from the paychecks for a family of four with two adult breadwinners who work full time and earn the state's median hourly income.
Visual Capitalist's Dorothy Neufield then revisualized the results to focus on how much that of the modeled families' income remained. Here's her version of the Common Sense Institute's map:
Here's her analysis of the most and least affordable states:
In top-ranked states like Iowa, households keep nearly 35% of their income, about $2,900 per month. In Hawaii, that figure drops to just 9%. That’s a difference of more than $2,000 per month in disposable income.
[...]
Midwestern states dominate the rankings, largely due to lower housing and childcare costs.
Iowa ranks first, with households keeping 34.7% of their income, followed by South Dakota (34.6%) and North Dakota (33.5%).
[...]
In the least affordable states, families spend up to 91% of their income on essentials and taxes, leaving little room for savings or unexpected expenses.
Hawaii families are most strained, with 9% of income left, followed by California at 10.9%. Between 2019 and 2025, California households saw one of the largest declines in affordability across states.
Massachusetts, despite high incomes, ranks near the bottom. Childcare alone consumes 24% of household income, showing how a single cost category can erode income advantages.
The Common Sense Instutute also looks at how each state's affordability has changed from 2019 to 2025. They find that Kansas, New Mexico, and Utah have seen their cost of living fall the most, while Rhode Island, Massachusetts, and California have seen the biggest escalation in living expenses over these years.
Dorothy Neufield. Mapped: Where Americans Keep Most of Their Paycheck. Visual Capitalist. [Online article]. 27 April 2026.
Labels: data visualization, personal finance
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.