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
How much money does the average American earning $40,000 a year spend on housing-related expenses? What percentage of the total spending of a typical 58 year old American goes to buy food and alcoholic beverages? And how much does the average American consumer unit (the personable phrase the data jocks at the BLS use to describe the people who spend money in the U.S.) put toward their retirement savings?
Even though the government collects all this data each year in the Consumer Expenditure Survey (CES), the answers to these questions aren't necessarily easy to extract. The government sorts the individuals and households who make up the so-called consumer units by what age range they fall into, or by what income range they earn, or by education level or a whole bunch of other basic categories, but they don't narrow the data down enough to isolate the people between Age 25 and 34 who earn between $30,000 and $39,000 before taxes, for example. Instead, we get a picture that includes everyone who falls in a given age range or whose annual income falls inside a given range, and that's as close as we can get from the data that's made freely available.
Until now. We've mined the Consumer Expenditure Survey and identified the kinds of spending that are driven by income and that are driven by age. We did this by first identifying where we saw the widest spreads in the datapoints for either income or age-based variation in the CES, and then by using the data regression tools at Zunzun to create a mathematical model for each major expenditure item.
We've put the outcome of our analysis at your fingertips in the tool below, in which you can simply enter the age of the "reference person" (another BLS term of endearment) and their annual before-tax income to calculate how much such an individual spends on any of the major expenditure categories we've listed. We'll also determine what percentage of the total spending that each category represents.
Each of the categories listed above correspond to the top line data for each presented in the 2008 CES data tables from which we obtained the data used in our regression analysis, except as follows:
What can you do with this information? Well, if you were ever curious to see how your consumer unit's spending compares to that of the average American consumer unit, at least of similar age and income, our tool's output will show you what that average level of spending is!
Bureau of Labor Statistics. "Table 3. Age of reference person: Average annual expenditures and characteristics, Consumer Expenditure Survey 2008". ftp://ftp.bls.gov/pub/special.requests/ce/standard/2008/age.txt. Accessed 16 November 2009.
Bureau of Labor Statistics. "Table 2. Income before taxes: Average annual expenditures and characteristics, Consumer Expenditure Survey, 2008". ftp://ftp.bls.gov/pub/special.requests/ce/standard/2008/income.txt. Accessed 16 November 2009.
Bureau of Labor Statistics. "Table 2301. Higher income before taxes: Average annual expenditures and characteristics, Consumer Expenditure Survey, 2008". ftp://ftp.bls.gov/pub/special.requests/ce/standard/2008/higherincome.txt. Accessed 16 November 2009.
Labels: demographics, economics, income, tool
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.