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 does your household compare to the average American household when it comes to spending for food at home?
Answering questions like that takes data, and for that, the Consumer Expenditure Survey has detailed the average amount of money spent by American household "consumer units" in each year from 1984 through 2020. In the following chart, we've extracted the survey's data for expenditures by food category, showing the data for each year to show the trends for each.
In 2020, the average total amount of food-at-home expenditures for American households was $4,942. Here's how that breaks down into major food categories:
This list brings up a good question: what's the difference between "Miscellaneous foods" and "Other food at home". Here's how the Bureau of Labor Statistics defines both of them (we've added the additional examples in parentheses):
Miscellaneous foods includes frozen prepared meals and other foods; canned and packaged soups; potato chips, nuts and other snacks; condiments and seasonings, such as olives, pickles, relishes, sauces and gravies, baking needs and other specified condiments; and other canned and packaged prepared foods, such as salads, desserts, baby foods, and vitamin supplements. Other food at home primarily represents sugar and other sweets (such as sugar, candy and chewing gum; artificial sweeteners; and jams, jellies, preserves, fruit butters, syrup, fudge mixes, icings, and other sweets), and also fats and oils (including margarine, shortening, and salad dressings, vegetable oils, nondairy cream substitutes and imitation milk, and peanut butter).
Since food prices have been rising, you can use these average 2020 expenditures to benchmark how much more money you're having to spend on these items in 2021.
U.S. Bureau of Labor Statistics. Consumer Expenditure Survey. Multiyear Tables. [PDF Documents: 1984-1991, 1992-1999, 2000-2005, 2006-2012, 2013-2020]. Accessed 9 September 2021.
Labels: food, inflation, personal finance
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.