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
Who is the median woman who doesn't earn a wage or a salary?
The question arises because of something we did last year. Specifically, when we extracted data for this demographic category of American income earner from other data published by the U.S. Census Bureau.
What makes this particular demographic category so interesting is that U.S. women who do not earn wages or salaries make up what is perhaps the lowest income earning group within the United States. To see what we mean, our chart below shows the inflation-adjusted median incomes earned by women from 1947 through 2010 in terms of constant 2010 U.S. dollars:
So just who is the median woman who doesn't earn a wage or a salary, who is part of the lowest ranks of income earners in the United States?
The answer came to us when we were looking at the history of average Social Security retirement and survivors benefits paid out over time, for which the Social Security Administration provides data for selected years going back to 1956. Our chart below shows what we found:
What we find is that the income earned by the median U.S. woman without a job paying a wage or salary for the years from 1956 through 2010 is largely consistent with benefits paid by Social Security, which means the median U.S. woman who doesn't earn a wage or salary is of retirement age - typically Age 62 (for those taking a reduced benefit) or older (for those taking non-reduced benefits).
We note that for much of the data, the median income is less than the average income. This is a characteristic of the lognormal distribution of income. However, we do observe an upward shift in the data over time, which we believe corresponds to the increasing number of women with wage and salary income in the United States, whose incomes reflect their growing share among Social Security recipients.
The variation in the median income data would also appear to be somewhat consistent with having an increasing portion of income derived from investments, such as those that might be earned through an Individual Retirement Account or 401(k)-type retirement investment programs, which we recognize in the surges for median income earned in 1986-1989, 1997-1999 and later in 2005-2006, which coincide with booming periods for the U.S. stock market.
Once again, that would be very consistent with the kind of income that would be earned by a woman of retirement age in the United States, who it would seem collectively make up the lowest income earning demographic group within the United States!
Labels: demographics, income distribution
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.