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 has the average cost of attending college at four-year degree-granting institution in the U.S. risen since the 1969-1970 school year?
For an American student who enrolled in a four-year college in the fall of 1969, the average they paid for their tuition, required fees, room and board totaled $754, which when we adjust for inflation be be in terms of constant 2011 U.S. dollars, works out to be the near modern day equivalent of $4,619.
But a student enrolling in the same kind of institution in the fall of 2011 for the 2011-2012 school year would pay $13,608. Nearly three times as much.
To get a better sense of how affordable, or rather, unaffordable attending college has become, we next calculated the percentage that the average cost of tuition and fees for college would consume of the typical income earned by American households:
In the chart above, we see that after holding basically flat from 1969 through 1982 at a range between 8.6% and 9.0% of the median American household income, the ratio of the cost of attending college with respect to that income began rising rapidly, with the cost of college having reached 26.7% of the American median household income in 2011-2012.
We also see that there would appear to be certain periods where the cost of attending college rose considerably faster than median household incomes, which we've shaded in the chart above.
Let's next look at how the cost of attending college has grown against median household incomes from 1969 through 2012:
Here, we see that there have been three major inflation phases for the cost of college: the first running from 1990 to 1994, the second from 2000 to 2003 and the third from 2007 through at least 2012 (and likely, the present).
We should note that each of these periods coincide with periods of recession or extended underperformance for the U.S. economy. But what is perhaps more remarkable is that we do not observe the same pattern for earlier recessions, the major years for which we've also indicated on this third chart.
That's largely the role of increased government subsidies for higher education after 1989, in the form of grants and guarantees for student loans, which enabled colleges to continue jacking up their prices well above what a typical American household could afford to pay, because now Uncle Sam is increasingly stepping in to pay a growing share of the bill.
National Center for Education Statistics. 2012 Digest of Education Statistics. Table 381. Average undergraduate tuition and fees and room and board rates charged for full-time students in degree-granting institutions, by level and control of institution: 1969-1970- through 2011-12. [Excel Spreadsheet]. NCES 2014-015, December 2013.
U.S. Census Bureau. 2013 Current Population Survey. Annual Social and Economic Supplement. Table H-5. Race and Hispanic Origin of Householder--Households by Median and Mean Income: 1967 to 2012. [Excel Spreadsheet]. P60-245, September 2013.
Bureau of Labor Statistics. Consumer Price Index - All Urban Consumers. U.S. City Average, All Items, Not Seasonally Adjusted. Online Application]. Accessed 8 March 2014.
Labels: education
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.