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
The Federal Reserve of the United States is chartered by the U.S. Congress to promote two goals: "stable" prices and "maximum" sustainable output. Traditionally, promoting stable prices has meant controlling the rate of inflation, while maximizing sustainable output has generally meant encouraging economic growth to maximize the rate of employment, at least as far as monetary policy can be applied to do so. Of these two tasks, controlling the rate of inflation has been a core responsibility of the Fed since its founding in 1913 (promoting maximum output and employment was added to the Fed's mandate in 1977), so we though we might take a look at how well the Federal Reserve has done at its principal task throughout its history.
To do that, we need to compare how the rate of inflation has changed from the period before the Federal Reserve was formed to the period afterward. For that comparison, we'll draw upon the Consumer Price Index data for all Urban Consumers for the period consisting of each calendar month from January 1871 through the present collected by Robert Shiller.
Using the CPI-U data, we calculated the trailing year compound annualized growth rate of inflation for year long period, with the first data point covering the time span from January 1871 through January 1872. We then charted the results, marking the point at which the Federal Reserve came into existence.
We find, through simple visual inspection, that the Federal Reserve has indeed had a powerful effect upon the volatility we observe in the rate of inflation in the United States. Prior to 1913, we find little stability as the rate of inflation frequently swung between significant levels of both inflation and deflation, as defined by exceeding an absolute value of 5% (+/- 5%). After the establishment of the Federal Reserve, we observe much more stability, with the rate of inflation mostly falling between 0 and 5%.
Mostly, but not always. The greatest rate of recorded inflation ever in the U.S. occurred in the years from 1916 to 1920, which coincides with the first World War, which came as a result of the Fed's decision to monetize European gold that had been moved to the U.S. for safekeeping during the war.
Meanwhile, we see inflation rear its ugly head again following the onset of World War 2, as wartime production requirements quickly absorbed all surpluses of many goods, resulting in their prices going up sharply. After that, we see what might best be described as "demographically-driven" inflation begin running amuck from the mid-1960s into the early 1980s, coinciding with the entry of the baby boom generation into the U.S. workforce.
But that leaves just the post-World War 2 inflation spike of the late 1940s as not having been accounted for - we might just have to put our detective to work on resolving what was behind that spike sometime in the near future.
Labels: inflation
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.