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
After answering "how big of a turkey you should get", let's tweak the question a bit and ask "how big can a turkey get?"!
Let's start answering that new question by finding out how big turkeys have already become. To find out, we've pulled 50 years of data on U.S. farm-raised turkeys from the National Turkey Federation and the U.S. Department of Agriculture, which includes finalized data from 1970 through 2018 and preliminary data from 2019.
In 2019, U.S. farms have raised an estimated population of 240 million turkeys, which if that figure holds, would be the fewest since 1987's 240.2 million.
Altogether, the live weight of all those U.S. farm-raised turkeys in 2019 totals 7.66 billion pounds, which would be an 0.8% increase over 2018's total and is 57% greater than 1987's total.
That combination of data can only mean one thing: the size of a U.S. farm-raised turkey has grown considerably over time. The following chart shows how much, where we find the average live weight of a farm-raised turkey in 2019 is 31.9 pounds, which is 70% larger than the 18.7 pounds that the average farm-raised turkey tipped the scales at back during the stagflationary days of the 1970s.
But it's also a significant increase over the 31.0 pounds the average farm-raised turkey weighed just a year ago. We think the reason for that might be attributable to an unintended consequence of the U.S.-China tariff war, where a key part of China's strategy has been to boycott purchases of U.S.-grown soybeans.
For U.S. turkey farmers, that has made higher quality soybean meal available to be fed to U.S. farm-raised turkeys at lower prices than they have been in recent years, which means that U.S. turkeys are reaching new records in how large they can grow.
As for how big a farm-raised turkey can get, we're afraid our chart doesn't provide enough information to tell, where if they were approaching a natural limit to their potential size, it would start taking on more of an S-shaped, logistic growth pattern, leveling out at a plateau with the passage of time.
But what if we assume that we're just at the halfway point for when that might happen though we don't see that in the data yet? At 31.9 pounds, 2019's average farm-raised turkey is 13.2 pounds heavier than the average farm-raised turkey of the 1970s, before U.S. turkey farmers began boosting their yield. Adding that margin onto the today's 31.9 pound average live weight suggests that another 40 years of increasing productivity could yield turkeys that regularly reach an average live weight of 45 pounds.
Is that number unreasonable? Several varieties of farm-raised turkeys, including Broad Breasted Bronze and Cornish Cross, have already produced individual birds that weighed over 50 pounds, so yes it is possible, though it would take many more years of productivity improvements in raising turkeys for U.S. farmers to achieve it.
There are crazier things afoot in the world today. Chinese hogs farmers have embarked on an effort to raise pigs that weigh as much as polar bears. That China needs to have such an effort can in part be traced in part to another unintended consequence of the U.S.-China tariff war.
National Turkey Federation. Sourcebook. [PDF Document]. October 2013.
U.S. Department of Agriculture. Poultry Production and Value, Final Estimates 2013-2017. [PDF Document]. June 2019.
U.S. Department of Agriculture. Turkeys Raised. [PDF Document]. 26 September 2019.
U.S. Department of Agriculture. Livestock, Dairy, and Poultry Outlook. [PDF Document]. 15 November 2019.
Labels: business, data visualization, 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.