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
How much health risk do you have from carrying too much mass around your midsection?
That question arises because studies point to the Waist-to-Height Ratio (WHtR) as a better indicator of early health risk than the Body Mass Index (BMI). As a general rule of thumb, if the circumference of your waist is greater than half your height, you have an elevated risk for developing chronic conditions like hypertension, diabetes mellitus, hypercholesterolemia, joint and low back pains, hyperuricemia, and obstructive sleep apnea syndrome.
The Waist-to-Height Ratio is also reported to be better than BMI in predicting heart attacks, especially for women, with higher ratios corresponding to higher risk.
That sounds like good bit of information to have, so we've built a tool to calculate your Waist-to-Health Ratio. Since you probably already know your height, the hard part will be finding out your waist circumference. Here's a video showing how to measure it.
Once you've done that for yourself, you're ready to go. If you're accessing this article on a site that republishes our RSS news feed, please click through to our site to access a working version of the tool. Here it is:
In using the tool, be sure to use the same units of measurement for both waist circumference and height. You'll get accurate results so long as you don't start mixing and matching inches and centimeters together....
According to documents leaked in February 2022, starting in July 2022, U.S. Air Force personnel will have their Waist to Height Ratio assessed. Individuals with waists that measure at more than half their height will be reassessed six months later, with those whose waists exceed that threshold at the later measurement date separated from service. "Seperated from service" meaning "discharged from the Air Force". Here's the chart the Air Force will be using to make that determination:
The thresholds shown on this chart for low, moderate, and high risk are those we've built into the tool's feedback. We've also made a point of giving the answer to the same two-decimal place results as would be used by Air Force medical personnel in their assessments, so there are no surprises for what to expect.
Margaret Ashwell and Sigrid Gibson. Waist-to-height ratio as an indicator of ‘early health risk’: simpler and more predictive than using a ‘matrix’ based on BMI and waist circumference. BMJ Open 2016:6:3010159. [DOI: 10.1136/bmjopen-2015-010159 | NIH: PDF Document]. 14 March 2016.
Sanne A.E. Peters, Sophie H. Bots and Mark Woodward. Sex Differences in the Association Between Measures of General and Central Adiposity and the Risk of Myocardial Infarction: Results From the UK Biobank. Journal of the American Heart Association. Vol. 7, No. 5. [DOI: 10.1161/JAHA.117.008507]. 28 February 2018. American Heart Association. Waist size predicts heart attacks better than BMI, especially in women. [Online Article]. 28 February 2018.
Darsini Darsini, Hamidah Hamidah, Hari Basuki Notobroto, and Eko Agus Cahyono. Health risks associated with high waist circumference: A systematic review. Journal of Public Health Research. Vol. 9, No. 2: Papers from the 4th International Symposium of Public Health (4th ISOPH), Brisbane, Australia. 29-31 October 2019. [DOI: 10.4081/jphr.2020.1811 | NIH: PDF Document]. 2 July 2020.
ShapeFit. Waist to Height Ratio Calculator - Assess Your Lifestyle Risk. [Online Article and Tool]. 31 March 2015.
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.