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 much does winning the Academy Award for Best Picture matter for DVD sales?
If you think about it, the annual televised Oscars ceremony is really little more than a four-hour-or-more-long commercial for the DVD of the movie that "wins" the "Best Picture" category. But we wondered how much that really matters for the movies' DVD sales.
To find out, we need to compare the DVD sales of a "Best Picture" winner with the DVD sales of a "Best Picture" nominee during the first several weeks after they go on sale to the public - ideally with the Oscars telecast occurring within just a few weeks of their DVD release. And really ideally, Best Picture contenders that have nearly identical sales during those first weeks of their release, except perhaps for the weeks immediately following the Oscars telecast.
We found two great examples from the 85th Academy Awards, which were televised on 24 February 2013: the movies Flight, whose DVD sales began two weeks before the 24 February 2013 Academy Awards telecast, and Argo, whose DVD sales began just one week before the Oscars telecast. Check out what we found in the chart below, in which we've also showed the DVD sales for a popular movie directed by Seth MacFarlane, who hosted the 85th Academy Awards telecast, just for comparison purposes:
In this chart, we see that the weekly DVD sales for both Flight and Argo are virtually identical for every week of their release except for one - the second week of DVD sales for Argo were double those of Flight, corresponding to the week immediately after it won the Academy Award for Best Picture of 2012.
For Argo, that meant that winning the Best Picture Oscar equated to an extra 142,665 more sales than it would have had that week if it hadn't won the Oscar. And at an average sales price of $14.97 that week, Argo's DVD sales grossed an additional $2,135,546 more than it likely would have for the movie's makers and distributors.
Notice also that there's almost no difference between Flight's and Argo's weekly DVD sales for all the other weeks of their DVD sales - their numbers are only meaningfully different for the week following when Argo won for Best Picture.
That makes the Academy Awards a four-hour-or-more-long commercial whose advertising impact on DVD sales only lasts for about a week. And it's only effective for the winner of the Best Picture Oscar, because Best Picture nominee Flight didn't see any meaningful bump in its corresponding third week DVD sales, which came right after the Oscars telecast.
But if nothing else, we hope our chart explains why Hollywood is now busy making Ted 2. Without good movies featuring talking bears like the original Ted, they just wouldn't be able to afford to make as nearly as many critical "successes" otherwise!
Labels: academy awards, business
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.