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 can a 1.2% decline in the number of turkeys produced result in a 21.9% increase in their price?
That's the question we're tackling today as we continue to survey the post-Turkey apocalypse world. Here, we're going to look at the pre-apocalyptic world of 2007 and compare it with the post-apocalyptic world of 2010. The animated chart below shows what we find when we look at the production of "Big Turkey" (aka "America's 20 largest turkey producers") in before and after snapshots:
In this chart, we can see that turkey production has largely just shifted among the 20 largest producers in the United States between 2007 and 2010.
In fact, if we add up the number of pounds of live turkeys processed by each of the Top 20 turkey producers, we find that this figure increased for "Big Turkey" from 2007 to 2010, from 6,858 million pounds to 6,971 million pounds, an increase of just 1.6% over those four years. So clearly, "Big Turkey" isn't responsible for the decline in the number of turkeys produced in the United States.
But the decline in the number of pounds of turkeys processed by "Combined Smaller Producers" is! Here, we find that these smaller turkey producers account for a decline of 568 million pounds of annual production between 2007 and 2010, as their combined total fell from 704 million pounds in 2007 to 136 million pounds in 2010.
Basically, the fallout from the 2007 recession significantly hurt small turkey producers who, in addition to having to deal with reduced demand for their products from people whose economic livelihoods were most affected by the recession, have also been hit by rising costs of production, especially in the form of higher prices for feed corn, thanks to the government's increasing ethanol mandates.
This double whammy is responsible for hurting the ability of smaller turkey producers to remain in business, as many have been squeezed out of the market for turkeys altogether. And in the absence of competition from those smaller businesses, "Big Turkey" has the ability to significantly hike its prices to American consumers, most of which goes to cover their own increased costs of operations.
That situation could be easily reversed. It only takes a President who pays more than lip service to the needs of typical Americans and small businesses, instead of being out to stack the deck against them!
Labels: business, thanksgiving
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.