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
According to the carefully crafted plan of the Obama administration, there would be one million electric cars cruising around America's streets and highways by 2015. According to the plan, almost half of those vehicles would be Chevrolet Volts.
So how well are President Obama's industrial policy plans working out in the real world?
The easiest way to find out is to count up the number of Chevrolet Volt sales over time. Electric vehicle industry observer InsideEVs provides a monthly scorecard of the number of sales recorded for each primarily electricity-powered automobile in the U.S., from which we extracted the data for GM's Chevrolet Volt and visualized in the following chart:
Through July 2013, we find that GM has sold a total of 43,111 Chevrolet Volts, which is about 161,889 vehicles short of the number that would need to be sold through this point of time to meet President Obama's planned sales total of 495,000 for these vehicles by 2015. That shortfall might help explain why GM has recently moved to mark down their recommended sale price for the Chevy Volt by $5,000.
Considering all of the primarily electricity-powered vehicles listed on InsideEVs monthly sales scorecard, through July 2013, some 117,788 electric vehicles have been sold in the United States. To reach President Obama's target of 1,000,000 electric automobiles sold by the end of 2015, some 882,212 more electric cars will have to be sold by December 2015.
That means that the number of sales of electric automobiles from August 2013 through December 2015 will have to average 30,421 per month between now and then. Through July 2013, the rolling twelve-month average for electric vehicle sales is 6,689 per month, a difference of 23,732 sales per month, which is about 78% below the average pace needed to hit President Obama's planned goal of having one million electric cars on the road by that time.
At present, the rolling twelve month average of Chevy Volt sales is nearly 80% below President Obama's planned average figure of 10,000 per month.
Put another way, there would appear to be an eighty percent difference between what President Obama promises and the reality of what he delivers.
And that would make Barack Obama the twenty percent President.
Update 16 August 2013: Writing at Innocent Bystanders, Geoff notes that we should have included one more graph in our analysis, which he has been kind enough to create: a comparison of President Obama's projected cumulative number of Chevy Volts that were supposed to be sold, and harsh reality:
Thanks Geoff!
U.S. Department of Energy. One Million Electric Vehicles by 2015, February 2011 Status Report. February 2011.
InsideEVs. Monthly Plug-In Sales Scorecard. Accessed 10 August 2013.
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.