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
We're not wrong often, but we're happy when we are.
The reason why is because that means the world has turned out to be a much more interesting place than we had previously supposed.
Today's celebration of wrongness on our part comes from the first public prediction we've offered in a very long time that we missed. Here, on 6 August 2012, we looked at the rising level of the national average price of gasoline in the United States and predicted that we would see an upward shift in the number of new jobless claims filed each week some two to three weeks after they rose above the $3.50 per gallon mark.
Here, we noted that they had risen above that mark on 30 July 2012, which would have our predicted surge in new jobless claims sometime between 11 August 2012 and 18 August 2012 (or as we had described it on 6 August 2012, "either with this week's jobless claim data or with next week's data").
Today's initial data release for the week ending 18 August 2012 from the BLS, although showing an "unexpected" increase, doesn't qualify as the upward shift we had expected. Our chart below shows where the latest data fits with respect to what we've identified as Trend J, which ended on 30 June 2012.
Thanks to volatility in the data related to how the BLS does its seasonal adjustments, which didn't match up with the timing for when a number of U.S. automakers actually took their mid-year plant shutdowns this year, we don't yet have enough data points to indicate the current Trend K (ideally we need at least six to ten weeks of consistent data to model a trend using our methods). Using our statistical control chart-inspired equilibrium limits however, you can see that Trend K so far appears to paralleling Trend J's upward trajectory, which indicates continuing weakness in the U.S. job market.
And that's pretty much where we're at today. We'll be exploring what factors might be behind our missed prediction in our next post on the topic, but here's a short list of what we're weighing today:
We're psyched for next week's data! And the best part is that we don't know which of these options, or others we've not yet listed, might apply!
Labels: jobs
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.