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
The U.S. Census Bureau has updated its data (Excel Spreadsheet) showing the percentage of Americans, Age 25 or older, who have attended four or more years of college. Our first chart shows how those figures have changed since 1940 for American men and women:
We observe that there are approximately six times the percentage of Americans who have completed at least four years of college in 2013 than there were in 1940.
Now, here's a chart showing how the median wage and salary income earned by individual American men and women have changed over much of that same period of time - all figures have been adjusted for inflation to be in terms of constant 2012 U.S. dollars:
In this chart, after adjusting for inflation, we see that the median wage and salary income (Excel Spreadsheet) for U.S. men has risen to be about 1.85 times what it was in 1947, while the median income for U.S. women has risen to be over 2.6 times what it was in 1947, when the majority of women did not earn any wage or salary income.
But we also see that in real terms, the median wage or salary earned by American men has stagnated since the early 1970s, even though the percentage of the adult male population in the U.S. who have completed at least four years of college has doubled in that same period of time. Meanwhile, working American women have seen their incomes stagnate since 2000, even though the share of women Age 25 or older having attended at least four years of college has grown by 10% over that time.
This outcome strongly suggests that there are real diminishing returns to higher education in the United States.
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.