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 didn't set out to go looking for it, but we couldn't help but notice what would appear to be a really unique correlation between the average annual tuition at a four-year higher education institution in the United States and the total amount of money the U.S. federal government spends every year.
To better see that correlation, we mashed up our charts indicating the presence of an unsustainable bubble in U.S. higher education with our chart showing the level of federal government spending, covering the period from 1976 through 2008, which includes all the tuition cost data we have.
We then multiplied the annual tuition cost data by a scale factor of 243, which indexes the data to the year 2000, and show the data plotted against household median income for these years.
What we find is that changes in the average cost of college tuition closely pace the growth of total U.S. federal spending, and has done so almost perfectly since 1998.
This correlation suggests that the U.S. federal government is directly behind the bubble we observe to exist in the cost of U.S. higher education, with federal spending during years of recession effectively insulating U.S. colleges and universities from the nation's economic circumstances by subsidizing their operations.
These subsidies, delivered at times of recession, free U.S. higher education institutions to set the price of their tuition independently of their students' ability to pay based upon their or their family's current household income.
The only limiting factor for U.S. higher education institutions then would be the actual growth of U.S. federal spending. This would be why the average cost of college tuition in the United States would appear to have come to track the total level of federal government spending so closely.
As a result, the cost of college tuition has skyrocketed with respect to the typical family's household income. Consequently, when a student attends college today, they must increasingly rely upon subsidies from the federal government that fill the gap between what their institutions charge and what they must pay for out of their own pockets.
And if that spending cannot be be sustained, then what we have is a very large bubble in both U.S. higher education and U.S. federal spending.
We'll take a more traditional look at how strong the connection is between U.S. federal government spending and tuition....
Labels: data visualization, 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.