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
In 2009, turkey production in the United States was decimated. Literally!
Sure, the U.S. economy was in recession, but what happened to turkey production in 2009 contradicts the pattern we observed in each of the three previous U.S. recessions in 1991, 2001 and even 2008, where turkey production has historically risen to fly in the face of economic contraction.
But then, in 2009, like Ben Bernanke's money or turkeys dropped from a helicopter, they plunged to earth.
The question we have today is why was 2009 different from every other year of recession for which we have data where turkey production and consumption by Americans is concerned?
We began by first investigating whether the price of turkeys had suddenly or dramatically risen, which would lead fewer people to buy turkeys. To get an idea of the base price of a turkey, we took data from the National Turkey Federation related to the amount of turkey producer's farm income and divided it by the total turkey production in the U.S. to get an approximate unit price. We then adjusted the values to account for the effect of inflation over time, producing our second chart.
What we find is that the nominal base price of a turkey in 2009 dropped from $16.41 in 2008 to $14.45, a decline of 11.9% and in inflation-adjusted terms, the decline is an almost identical 11.6%.
By contrast, the recession year of 1991 saw turkey prices drop by 2.6% in nominal terms and 6.6% in real terms. In 2001, turkey prices dropped by 2.0% in nominal terms, while they fell 4.6% after adjusting for inflation. And in 2008, after nearly a full year of recession, turkey prices actually rose by 10.9% from the previous year, or 6.7% when adjusted for inflation, driven by increased demand!
So something changed between 2008 and 2009 to fully reverse the typical pattern we've observed in the U.S. where turkey consumption rises during a recession, seemingly regardless of the change in price.
In our next installment, we'll identify just what that something was. As a teaser, it's not so much of a what, so much as it is a who....
Until then, we can't resist. Here's the classic scene from WKRP in Cincinnati:
See the full episode Turkeys Away at Hulu!
Labels: thanksgiving, turkey
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.