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 Federal Reserve Bank of Dallas' 2004 Annual Report (available online as a 3.5MB PDF document) contained salary data for a variety of occupations according to their required level of education requirement (whether they required a college degree or not) and their experience level (where skilled = high, inexperienced = low or entry-level, unskilled = doesn't matter) for 2004, which Political Calculations' provides in the dynamic table below. You may click upon the column heads to rank the data from either highest-to-lowest or lowest-to-highest.
2004 Salaries - Degree vs. Experienced Non-Degree Occupations |
---|
Skill Level/ Degree | Degree/ Occupation | Salary |
---|---|---|
Inexperienced, Degree | Accounting | 41058 |
Skilled, Non-Degree | Air Traffic Controller | 95272 |
Inexperienced, Degree | Chemical Engineering | 52539 |
Inexperienced, Degree | Computer Science | 49036 |
Skilled, Non-Degree | Dental Hygienists | 59785 |
Skilled, Non-Degree | Elevator Repairers | 57077 |
Inexperienced, Degree | English | 31113 |
Inexperienced, Degree | History | 30344 |
Unskilled, Non-Degree | Janitor | 20763 |
Inexperienced, Degree | Journalism | 26758 |
Inexperienced, Degree | Nursing | 38920 |
Unskilled, Non-Degree | Parking Lot Attendant | 18055 |
Inexperienced, Degree | Pharmacy | 78593 |
Inexperienced, Degree | Psychology | 28230 |
Skilled, Non-Degree | Real Estate Brokers | 71444 |
Unskilled, Non-Degree | Sewing Maching Operator | 19373 |
All | U.S. 2004 Average | 36999 |
It's interesting to see that even within the groupings for both degree and non-degree occupations, education is a differentiating factor in determining an individual's income. For the non-degree occupations, the higher level of education is reflected in the form of the specialized skills an individual acquires through experience or training, as you would expect in the case of an air traffic controller compared to a parking lot attendant.
Likewise, the higher level of education required to gain the entry-level skills of an engineer or pharmacist command much more income than those degrees whose graduates do not require the same level of specialized knowledge. Think about it - you could teach a pharmacist to be a journalist and you would likely have them up to speed at the occupation in less than a year. If you tried the reverse however, it would certainly be unlikely that the journalist seeking to become a pharmacist would be anywhere near ready to work behind the counter filling prescriptions at Walgreens in the same amount of time. This difference in specialization accounts for the substantial difference in starting salary between the two occupations. Adam Smith's "division of labour" marches on!
Labels: education, income, jobs
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.