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
Have you inherited bad genes? Do you want to find out if you're more likely to have colon cancer as a result of your genetic makeup? Would you (or your insurance company) rather pay $300 or $3000 to find out if that's the case?
Political Calculations' latest health-related tool is based upon a simple formula that, when combined with a $300 lab test, can determine whether your colon cancer has bad genes as a contributing factor. The new method is reported to have a two-thirds likelihood of confirming whether errant genes are a contributing factor behind a patient's colon cancer and is an alternative to an existing medical test that costs $3,000. Those potential savings are something that we can see adding up quite quickly, as colon cancer is the second-most frequent killer of U.S. cancer patients as only lung cancer claims more lives.
The tool below is aimed at those who have already been diagnosed with colon cancer and may be used to find the likelihood that those individuals have the genetic mutation that may have contributed to their condition. Just enter the appropriate data below and the tool will provide the probability that this might be the case:
The formula's creators have their own online tool for doing this same math, but their interface is less direct for gathering needed information from their tool's users. Their site also provides additional data and information about followup testing that medical staff may use to refine and confirm their findings.
Going back to the economics, Fox News provides some of the background behind the development of the formula for screening colon cancer patients:
They come from a huge effort to analyze every case of colon cancer in Scotland from 1999 to mid-2003 involving people under 55. All cancers are caused by bad genes, but ones diagnosed earlier in life are more likely to be from inherited mutations.
The most common of these mutations cause the Lynch syndrome, a type of colon cancer that progresses very quickly. These mutations also raise the risk of uterine, ovarian and other forms of cancer, making it important to identify relatives who may be carriers.
But doing $3,000 genetic tests on every colon cancer patient to find the 4 percent who have such mutations is expensive and impractical, considering that 150,000 Americans and 500,000 people worldwide are diagnosed with the disease each year.
For our part, we'll note that testing all 150,000 Americans diagnosed with colon cancer each year to identify if they carry the mutated genes that lead to the disease would cost $450 million (at $3,000 per test). For our money, replacing a $3,000 test with the tool above and a $300 test for those with a high probabiliy of the genetic mutation to better screen patients and make their treatment more effective makes a lot of sense.
Labels: health, health care, 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.