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
If you think about it, the Academy Awards ceremony is really just a three to four (or more!) long televised advertisement for the "Best Picture" winner.
Our question about the Oscars this year: Can host Billy Crystal keep enough of the television audience engaged in the broadcast for long enough to be able to sell more tickets than would otherwise be sold to whatever movie wins that title?
Sure, he'll be dressed in a tux and will look like the guy who sells you movie tickets behind the bullet-proof glass at your local cineplex, but why should Hollywood have to count so much on Billy Crystal to sell their movie tickets?
That question is super-relevant this year because of the unmitigated disaster that was the 83rd Annual Academy Awards ceremony last year! That was when so much of the U.S. audience tuned out during the poorly written and directed live broadcast that the movie's box office plummetted by 15%, as the Best Picture winner took in *LESS* money at movie theaters in the week after the Oscars ceremony than it did in the week before.
It's true! We went back and compared the one-week before and one-week after box office totals for all the Best Picture winners announced since 2000 to see just how each did, using the daily box office data for each as reported by Box Office Mojo, and then calculated the percentage increase or decrease in the week after the Oscars as compared to the week before.
Our data is presented in the table below:
Box Office Performance of "Best Picture" Academy Award Winners, One Week Before and After Winning | |||||
---|---|---|---|---|---|
Academy Award | Ceremony Date | Best Picture Winner | Box Office in Week Before Oscars | Box Office in Week After Oscars | Percentage Change |
72 | 26 March 2000 | American Beauty | $5,460,072 | $8,190,112 | 50% |
73 | 25 March 2001 | Gladiator | $45,033 | $474,174 | 953% |
74 | 24 March 2002 | A Beautiful Mind | $5,499,295 | $6,140,030 | 12% |
75 | 23 March 2003 | Chicago | $9,169,194 | $10,637,940 | 16% |
76 | 29 February 2004 | The Lord of the Rings: The Return of the King | $2,996,678 | $4,094,558 | 37% |
77 | 27 February 2005 | Million Dollar Baby | $10,538,151 | $11,748,270 | 11% |
78 | 05 March 2006 | Crash | $70,399 | $342,709 | 387% |
79 | 25 February 2007 | The Departed | $367,064 | $336,608 | -8% |
80 | 24 February 2008 | No Country for Old Men | $3,365,401 | $5,389,446 | 60% |
81 | 22 February 2009 | Slumdog Millionaire | $11,673,672 | $16,669,726 | 43% |
82 | 07 March 2010 | The Hurt Locker | Not in theaters. | ||
83 | 27 February 2011 | The King's Speech | $10,989,524 | $9,315,074 | -15% |
Since 2000, the box office take of the Academy Awards' Best Picture Winner increases by an average of 22% in the week following the Oscars ceremony as compared to the week before, with the best performance being turned in by Gladiator, which was very near the end of its run in theaters when it won.
The worst however was last year's announced winner The King's Speech, which dropped like a rock after it won. Its only competition for losing money was the Best Picture winner announced in 2007, The Departed, the ceremony for which was also negatively reviewed.
By contrast, the years for which we have data in which Billy Crystal hosted the Oscars (2000 and 2004) saw the box office take for the Best Picture winners jump upward by an above average of 43% - more than double the average post-Oscar bump. It's no accident that Billy Crystal is back....
There just aren't many Oscar hosts who are as gifted at selling movie tickets!
Labels: academy awards
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.