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
It's Thanksgiving week! We're marking the occasion by taking on questions that may come up during family celebrations of the holiday. And while many of these questions might be asked by children, they're important enough that the U.S. Department of Agriculture's National Agricultural Statistics Service and the U.S. Fish and Wildlife Service keeps track of them.
Let's start with a very basic question: How many turkeys are there in the United States?
The answer to that question comes in two parts, because there are two distinct portions of the population of turkeys in the U.S. There are farm-raised turkeys, which are mainly raised in 13 states, and there are wild turkeys, who live throughout most of the continental U.S.
We'll start with the population of farm-raised turkeys, because their numbers are so much larger than the population of wild turkeys. In 2024, an estimates 205 million turkeys have been raised on U.S. farms. That number is down from 2023's estimated 219 million farm-raised turkeys and is well below the record number of 302.7 million turkeys that were raised on U.S. farms in 1996.
The following interactive chart presents the number of farm-raised turkeys for each year from 1970 through 2024:
It's harder to count the population of wild turkeys in the U.S. because their numbers have to be inferred from data collected by hunters and conservationists, where for every wild turkey they see, there are many more they did not see. The U.S. Fish and Wildlife Service reports there are an estimated 6.5 million wild turkeys in the U.S.
That puts the total population of turkeys in the U.S. at 211.5 million in 2024. Since about 97% of these turkeys were raised on farms, those birds are the ones you'll most often find at the center of a traditional Thanksgiving dinner.
U.S. Department of Agriculture National Agricultural Statistics Service. Livestock Historic Data. [Online Database: Survey - Animals & Products - Poultry - Turkeys - Production - Turkeys Production Measured in Head - Total - National - US Total - 1929-2024 - Annual - Year]. Accessed 14 November 2024.
Susan Morse. U.S. Fish and Wildlife Service. Wild Facts About Turkeys. [Online article]. Accessed 24 November 2024.
Image credit: Turkeys being raised on a turkey farm by Scott Bauer for the U.S. Department of Agriculture (3 February 2013) on Flickr. Creative Commons CC by-SA 2.0 Attribution-Sharealike 2.0 Generic Deed.
Labels: food, 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.