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
From the time a baby is born in the U.S. to the time they die, Americans are measured in a variety of different ways.
Two of those ways involve measuring their height and weight, which is a task that has been undertaken at regular intervals through the National Health And Nutrition Examination Survey (NHANES), where the latest summary of these vital statistics covering data collected from 2011 through 2014 was published by the U.S. Centers for Disease Control (CDC) in August 2016.
The results for height were obtained from a sample of 5,547 women and 5,232 men, while the results for weight were obtained from a sample of 5,425 women and 5,236 men. The report breaks down its collected statistics by major demographic categories of race and Hispanic origin, including the categories of non-Hispanic white, non-Hispanic black, non-Hispanic Asian, Hispanic and Mexican-American. The Hispanic category overlaps the sample of Mexican-Americans.
Because it is calculated from the height and weight data, the CDC's 2016 report also includes the Body Mass Index data for each of these groups who had both their height and weight data collected as part of the survey. That data is provided for 5,413 women and 5,223 men.
The following table reveals the average height, weight, and body mass index that the NHANES survey found for adult American women Age 20 or older in 2011-2014.
Average Height, Weight and BMI for U.S. Women by Race and Hispanic Origin, 2011-2014 | |||
---|---|---|---|
Demographic Group | Average Height (in) | Average Weight (lb) | Body Mass Index (BMI) |
White | 64.1 | 168.4 | 28.8 |
Black | 64.2 | 190.2 | 32.5 |
Asian | 61.8 | 131.4 | 24.2 |
Hispanic (Includes Mexican-American) | 62.0 | 164.7 | 30.0 |
Mexican-American | 61.9 | 167.6 | 30.7 |
All | 64.1 | 168.5 | 29.2 |
The next table reveals the average height, weight, and body mass index that the NHANES survey found for adult American men in 2011-2014.
Average Height, Weight and BMI for U.S. Men by Race and Hispanic Origin, 2011-2014 | |||
---|---|---|---|
Demographic Group | Average Height (in) | Average Weight (lb) | Body Mass Index (BMI) |
White | 69.7 | 198.8 | 28.7 |
Black | 69.5 | 199.3 | 28.9 |
Asian | 67.0 | 161.0 | 25.2 |
Hispanic (Includes Mexican-American) | 67.4 | 189.9 | 29.3 |
Mexican-American | 67.3 | 192.1 | 29.7 |
All | 69.2 | 195.7 | 28.7 |
How much do you suppose that the averages indicated by these statistics for the entire population has been affected by the United States' changing demography over the years?
Fryar CD, Gu Q, Ogden CL, Flegal KM. Anthropometric reference data for children and adults: United States, 2011–2014. National Center for Health Statistics. Vital Health Stat 3(39). [PDF Document]. 2016.
Labels: demographics, 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.