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
We introduced a portion of the data yesterday, as we compared the number of people earning today's $7.25 per hour federal minimum wage or less with those earning the same amount back in 2006, so today, we're going to visualize a portion of the BLS' very-recently released data on the characteristics of U.S. minimum wage workers in 2010.
First up, let's break down the average number of minimum wage workers in 2010 by their age group:
Overall, teens (Age 16-19) make up 22.8% of all individuals who earned the federal minimum wage or less in 2010, while young adults (Age 20-24) represented 26.2% of all minimum wage earners, for a combined representation of 49.0%.
The next largest group, those between the ages of 25 and 29, accounted for 11.5% of all minimum wage earners, while all the remaining age groups have a percentage representation in the single digits.
Next, let's look at what the distribution of 2010's minimum wage workers looks like with respect to both their age and their gender.
Once again, we find that the youngest workers have the heaviest concentration within the minimum-wage earning workforce. We find however that women are disproportionately represented within that minimum-wage earning workforce, accounting for 63.0% of all minimum wage workers, or rather, nearly two out of every three minimum wage earning jobs.
That disproportionate share carries across all age groups. Here, we find the lowest percentage share of women in the minimum wage earning workforce for the Age 60-64 group, which is closely followed by teenagers, who account for the lowest percentage share of women at 58.5%. By contrast, women between the ages of 45 and 49 have the largest percentage share for women earning the federal minimum wage within a given age group, representing 73.1% of all minimum wage earners in that age range.
Our final chart considers the number of people counted as earning the federal minimum wage of $7.25 or less in 2010 by their level of educational attainment:
Here, we find that minimum wage earners are most likely to have some college education, but no degree, as this group accounts for 31% of all minimum wage earners. These individuals are closely followed by those who have just high school diplomas, but no college education, who represent 29% of all minimum wage earners, and by people having earned less than a high school diploma, who represent 28% of all minimum wage earners.
Combining these percentages, we find that 88% of minimum wage earners are accounted for by people who have not earned a college degree of any kind.
U.S. Bureau of Labor Statistics. Characteristics of Minimum Wage Workers: 2010
Labels: minimum wage
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.