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've drilled down a bit deeper into the U.S. Census Bureau's data documenting the lifetime income trajectories that Americans have expect based on their level of education.
Previously, we looked just at those trajectories for all Americans with some work experience for the years from 2000 through 2016, which includes the data for Americans who work part time, who may only work part of a year, who may have exited the workforce, whether temporarily, such as to focus on raising children or because of layoffs or other job changes, or permanently, such as through retirement.
Now, we're focusing like a laser beam on Americans who work full-time, year-round and, as a bonus, we've expanded the data in our analysis to include all the years for which the Census Bureau has provided this information in a convenient digital format, which is to say since 1994. Our first chart shows the mean lifetime income trajectories for various levels of educational attainment for these full-time, year-round workers:
This chart reveals a clear difference in the education level-based lifetime income trajectories that Americans who work full-time, all year-round, where those who can sustain working at this pace can expect to have, on average, higher lifetime incomes with higher levels of educational attainment.
That income differentiation also carries from the very outset of their adult working lives, where incomes rise with higher levels of education. The following chart shows this data for 2016, which until September 2018 when the data for 2017 will be made public, represents the most recent year for which this data is available.
The pattern shown in the first chart is persistent from year-to-year in the Census Bureau's historical data, which provides confidence that the survey data is capturing the average lifetime income trajectories of Americans who work full-time, year-round. As an example of this persistence, the following chart shows the age-based incomes as a percentage of the mean income of the Age 18-24 cohort for Bachelor degree holders who work full-time, year-round.
While there is considerable variation from year to year, the overall pattern for lifetime income trajectories holds across the various levels of educational attainment and over what is now more than two decades worth of income data.
U.S. Census Bureau. Current Population Survey Tables for Personal Income. PINC-04. Educational Attainment--People 18 Years Old and Over, by Total Money Earnings, Work Experience, Age, Race, Hispanic Origin, and Sex. Both Sexes, All Races. Worked Full Time, Year Round. [Digital files: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016]. Accessed 19 August 2018.
Labels: data visualization, demographics, education, income, income inequality
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.