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
Life expectancy in the United States has started to recover after taking a big hit from 2020's Coronavirus Pandemic.
That's the big story following the CDC's release of its provisional life expectancy estimates for 2022 at the end of November 2023. After peaking at 78.8 years in 2019 (76.3 years for males and 81.4 years for females), average American life expectancy at birth dropped during 2020 and 2021, bottoming at 76.4 years (73.5 years for males and 79.3 years for females).
But in 2022, it began to rebound. Average life expectancy at birth rose to 77.5 years, with life expectancy rising by 1.3 years to 74.8 years for males and rising by 0.9 years to 80.2 years for females. The CDC finds "declines in mortality due to COVID-19 were the primary reason for the increases in life expectancy from 2021 to 2022 observed for the total population".
The following chart showing how life expectancy from birth has changed for Americans from 2000 through 2022 is taken from the CDC's report presenting its provisional findings for 2022.
While the decline in COVID-19 mortality led the improvement in U.S. life expectancy, it wasn't the only contributor to it.
The increase of 1.1 years in life expectancy from 2021 to 2022 primarily resulted from decreases in mortality due to COVID-19 (84.2% of the positive contribution), heart disease (3.6%), unintentional injuries (2.6%), cancer (2.2%), and homicide (1.5%) (Figure 4). The increase in life expectancy would have been even greater if not for the offsetting effects of increases in mortality due to influenza and pneumonia (25.5%), perinatal conditions (21.5%), kidney disease (13.0%), nutritional deficiencies (12.6%), and congenital malformations (5.9%).
The CDC's provisional data for 2022 will be finalized over the next months as the agency is still accumulating death certificate data.
Arias, Elizabeth; Kochanek, Kenneth D.; Xu, Jiaquan; Tejada-Vera, Betzaida. Provisional Life Expectancy Estimates for 2022. National Center for Health Statistics (U.S.). VSRR; no 31. [PDF Document]. 29 November 2023.
NAMES. United States Life Tables, 2019. National Center for Health Statistics (U.S.). National Vital Statistics Reports, Vol. 70, No. 19. [PDF Document]. 22 March 2022.
Image credit: Human development stages (collage) on Wikimedia Commons. Creative Commons. CC BY-SA 3.0 DEED Attribution-ShareAlike 3.0 Unported.
Labels: health
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.