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
Suppose, for an instant, that there's nothing unique about you, other than being an average American that has reached your current age. As such an average American, how much longer can you reasonably expect to live?
That isn't an idle question! While unique circumstances such as your heredity and your lifestyle choices certainly affect your odds of reaching a given age, where the government is concerned, you're just a statistic. A numeric blip around which things like future spending levels for Medicare and Social Security benefits are determined, where you are just a number to be managed. Managed, that is, until your personal lifespan countdown clock stops ticking.
How much time do the government's planners, who don't know you any better than we do, think you have left?
Answering that question is what our latest tool is all about! We extracted the latest remaining life expectancy data from the National Center for Health Statistics' United States Life Tables for 2014, which is the most recent data available. From that data, we constructed a mathematical model to represent the remaining life expectancy for all Americans given their current age. The following chart shows the model we created against the official remaining life expectancy data.
From here, if you want to estimate how much time you have remaining, assuming that you're an average American drawn from random among the total population, just enter your current age into the tool below. If you're reading this article on a site that republishes our RSS news feed, please click here to access a working version of the tool on our site.
Because the life tables don't extend beyond Age 100, we've capped the maximum age to that level for our tool's results. If you enter a higher age, you'll get the results for Age 100. We've likewise set a minimum age of 0 for the tool as well.
If you'd like to get a better indication of how much time you, as an individual, might reasonably expect to live, we recommend the Living to 100 calculator, which allows you to factor in many of the unique factors that can significantly influence how long you'll actually live.
Labels: demographics, health, tool
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.