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
So, what is the average wage in the United States? And what will it be five, ten or fifty years from now? Today, Political Calculations(TM) is mining historical data for the purpose of modeling the current and future level of the U.S. National Average Wage Index (NAWI) so you don't have to!
Update 26 October 2010: Welcome Bing searchers! Please be aware that the tool presented below is out-of-date - we have a much newer version available for your number crunching needs!
The data being used for the formula extraction is provided by the Social Security Administration, who tracks the data from 1951 and uses it to index an individual's lifetime earnings for the rate of inflation in wages in determining their Primary Insurance Amount (PIA), or rather, the basic level of one's Social Security retirement benefit.
The following chart shows the change in the National Average Wage Index over the number of years since 1951, as well as the formula extracted using Microsoft Excel's regression analysis capability:
Click the image for a larger version.
The formula indicates that the annualized rate of increase with continuous compounding in the NAWI index is 5.23%. The following tool allows you to select any year from 1951 to 2100 in order to estimate the value of average wages in the United States using the generated formula, assuming that the level of its future growth is similar to that of the past 54 years:
If you're interested in what people get paid for what they do in various locations throughout the United States, some excellent resources on the web include Salary Expert and Salary.com. Both feature easy-to-use interfaces for quickly getting to basic salary information for given metropolitan areas. If you're looking for more comprehensive information, the U.S. Bureau of Labor Statistics has the most comprehensive breakdown of job statistics across the United States. But then again, what else would you expect from the mathematical statisticians who are paid $38,767 - $58,366 USD per year to compile the data!
Labels: earnings, education, income, tool, wages
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.