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
What's wrong with the economy in California?
We know. It's a long list. But we're specifically looking at the seasonally-adjusted trend in the state's weekly number of initial unemployment insurance benefit claims, which are filed whenever people are laid off from their jobs.
Let's start by updating the national picture for new jobless claims, where we find that the current trend has the number of layoffs in the U.S. falling by approximately 1,000 per month since 23 February 2012:
As you can see from the notations on the chart, we've recognized that California's Economic Development Department has been having an extreme amount of trouble in processing these unemployment benefit claims, especially since Labor Day weekend in 2013, which is why we've decided to dig deeper into the state's problems.
Next, let's look at the national picture for the seasonally adjusted number of new jobless claims each week again over the same period, but this time, let's omit California's data from the picture. Here's what we find:
In this chart, we find that the entire rest of the nation is experiencing positive economic conditions, which if not for the drag of California's economy on the national economy, has the number of job layoffs and subsequent new jobless claims falling at an average rate of 2,600 per month.
So what's the current established trend for California's new jobless claims? Our third chart provides the answer to that question:
Unlike the entire rest of the nation, the state economy of California's would appear to be in a mild recession, as the state's seasonally-adjusted number of new jobless claims has been rising at an average rate of nearly 1,000 per month since 23 February 2013. (Note: we've omitted the data associated with outliers related to the California EDD's inability to process claims from our regression analysis of the current trend, so the state government agency's incompetence is not a factor affecting the trend.)
In fact, with the average number of claims being filed in the state each week now nearly at 60,000, we have to note that this is over 15,000 per week higher than the state's average number of claims being filed in the two years preceding the December 2007 recession.
So aside from the California's Economic Development Department's incompetence in processing new unemployment insurance claims filed by people who have just lost their jobs, something else is causing California to be enough of a drag on the U.S. economy, where on average, an increasing number of people in the state are losing their jobs each week.
Once again, we know. It's a long list. We just thought we'd point out that whatever the state's government officials have been doing for the last year, it's not helping the state's economic situation, which has deteriorated over that time.
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.