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
Previously, we advanced two possible hypotheses that might explain what is currently happening with the number of seasonally-adjusted initial unemployment insurance claim applications being filed in the U.S. each week:
In that post, we indicated that we might not know which hypothesis was correct until sometime this summer. But that was before the U.S. Bureau of Labor Statistics released its initial estimate of the number of new jobless benefit claim filings on Thursday, 26 April 2012. Now, it is very possible we might know the answer as early as this upcoming Thursday, 3 May 2012.
We've updated both charts showing our two hypotheses to incorporate the data as it stands as of the BLS' 26 April 2012 report. The first chart illustrates our first hypothesis:
In this chart, we would seem to be realizing our first hypothesis, in that the indicated trend, which we've identified as Trend I, is in the process of flatlining.
Now take a closer look. Focusing in on the data from 4 February 2012 through 31 March 2012, we see that the mean trend line for all data reported since 3 December 2011 has shifted in the past week so that all but one of these data points are below the line.
Following the well-established rules developed by Western Electric over half a century ago to determine whether or not an existing trend has broken down after having been in statistical equilibrium, which are visually depicted in the bell-curve image (it's not there for decoration!), we find that all it would take for us to declare this hypothesis to be false is for the most recent data, for the week ending 21 April 2012, to be revised upward by more that 2,000 claims, as the resulting change in the mean trend line will place the data for these nine consecutive weeks below it.
If the BLS keeps to its recent track record, it will definitely be revising the number of new jobless claims recorded for the week ending 21 April 2012 upward when it revises its data for that week this Thursday, 3 May 2012 - the only question is by how much.
Our second chart shows what the new trend would look like at this point in time:
This Thursday, our two hypotheses regarding the current trend in new jobless benefit claim filings will enter the theoretical Thunderdome, and very possibly, only one will leave. Stay tuned!
Trend I is dead. Trend J has begun. All hail J!
The official announcement is here (jobless claims for 21 April 2012 revised upward by 4,000....)
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.