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
Before we begin, we're going to flat out admit that all the analysis in our traditional Thanksgiving Week annual report on the state of the U.S. Turkey Industry is at least a year out of date, but what do you expect when we only analyze the economics of turkeys once a year? And we should also note that 2007 isn't over yet!
Previously, we've dug into the nefarious world of the U.S. Turkey-Industrial complex, a shady place that saw turkey production plunge in 2005 and that is having a harder time making a buck in recent years. Beyond that, we also uncovered the real seamy underbelly of U.S. turkey production, where massive amounts of agricultural R&D are being put into what we choose to call the "Super Turkey" project!
The fortunes of the U.S. turkey industry would seem to be on a rebound, at least as of last year. Our first chart shows the bounce back from the deep plunge U.S. turkey production took in 2005:
In 2006, the number of turkeys produced in the United States rose by 6 million birds to hit a level of 262 million turkeys, the second lowest level since 1989's production of 261 million turkeys. The number of turkeys produced in the U.S. in 2006 is 41 million below the peak year's production of 303 million turkeys in 1996.
Unsurprisingly, the increased number of turkeys produced for the dinner table in 2006 led to increases in both the Total Live Weight of turkeys (7.417 billion pounds) and the Total Ready-To-Cook (RTC) Weight of turkey's processed and inspected for consumer consumption (5.686 billion pounds).
Now that we know how many turkeys were produced in 2006 and how much they collectively weighed, we can now determine how successful the super-secret Super-Turkey project has been in achieving its goal: a single turkey weighing over 7.4 billion pounds that would be capable of fulfilling all U.S. consumption needs for an entire year. The results of our calculations are shown in the next chart:
The live turkeys of 2006 weighed in at an average of 28.31 pounds each, up just 0.16 pounds from the average 28.15 pounds per bird in 2005. This represents the smallest annual increase since 2002's 0.07 pound increase from the previous year and is down substantially from 2005's year-over-year 0.56 pound increase. This suggests that progress on the Super-Turkey project may be stalling out as U.S. turkey producers focused on producing more birds in 2006 rather than bigger ones.
And even though they focused on producing more birds, with the RTC-Inspected weight of the average bird in 2006 coming in at 21.70 pounds, up 0.20 pounds from 2005's average of 21.50 pounds per bird, these figures once again indicate that U.S. turkey producers are continuing to achieve higher and higher yields.
The bottom line: never underestimate the U.S. turkey producer's productivity!
Labels: 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.