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
Americans collectively spent over $447.5 billion of their own money to cover the cost of unsubsidized health insurance in 2018, an increase of 0.8% from the more than $443.8 billion spent in 2017. At an average annual cost of $3,405 per household consumer unit however, 2018's spending represents the first year over year decline in this category of consumer expenditures since 1996, falling from 2017's average cost per household consumer unit of $3,414.
This data comes from Consumer Expenditure Survey (CEX), which shows the continuing effect of the skyrocketing cost of health insurance caused by the passage and implementation of the Affordable Care Act during the Obama administration. In this case, the rapid escalation of health insurance costs to higher income earning households that could previously afford coverage may be prompting them to choose to become uninsured, which would contribute to the indicated reduction in average cost.
From 2017 to 2018, the number of individual uninsured Americans rose by 1.9 million, from 25.6 million to 27.5 million, which the U.S. Census Bureau reveals a very large portion of this increase was uniquely concentrated in households earning well above the median household income of $61,392 for 2018:
Between 2017 and 2018, overall health insurance coverage decreased 1.0 percentage point for people in families with income from 300 to 399 percent of poverty and 0.8 percentage points for people in families with income at or above 400 percent of poverty. During this time, the overall health insurance coverage rate did not statistically change for any other income-to-poverty group.
Here's how that translates into the number of affected individuals:
The number of uninsured Americans in households with income above 400 percent of the poverty line increased by 1.1 million from 2017 to 2018, and the number of uninsured in households with income above 300 percent of the poverty line — about $75,000 for a family of four — increased by 1.6 million.
Households in this category, which includes many headed by small business owners and self-employed income earners who don't have access to other employer-provided health insurance coverage, are largely choosing to go from paying top dollar or near-top dollar for health insurance to no such coverage, even though they would still be subject to additional income taxes from the Affordable Care Act's mandate penalty. For these higher income earning households, since the rising cost of coverage they must pay has been driven up by the requirements of the Affordable Care Act to the point where it far exceeds the value of tax subsidies available to them, dropping the amount they pay for family coverage from nearly $20,000 to $0 per household is having a noticeable effect on the overall average cost paid out of pocket by all American households for health insurance, which is being captured by the CEX data for 2018.
The Trump administration has introduced reforms aimed at arresting the skyrocketing cost of health insurance for these households in late 2018 to address their specific needs, which may not show an effect until the 2019 data becomes available.
U.S. Bureau of Labor Statistics and U.S. Census Bureau. Consumer Expenditure Survey. Multiyear Tables. [PDF Documents: 1984-1991, 1992-1999, 2000-2005, 2006-2012, 2013-2018]. Reference Directory: https://www.bls.gov/cex/csxmulti.htm. 10 September 2019.
U.S. Census Bureau. Health Insurance Coverage in the United States: 2018. [PDF Document]. 10 September 2019.
Labels: demographics, health insurance, 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.