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
Every now and again, a famous economist will say something that not only stands apart from everything else they've said and done, it turns out to be the defining quote of their entire life, regardless of what other achievements they may have had or contributions they may have made in their field. We thought it might be fun to revisit some of the more famous, or really, infamous, things that several famous economists have said that might very well be placed on their tombstones as their final epitaph.
Here's a very famous one about the U.S. stock market....
Stock prices have reached "what looks like a permanently high plateau," Irving Fisher, Yale economist, told members of the Purchasing Agents Association at its monthly dinner meeting....
- Irving Fisher, 16 October 1929, less than two weeks before the U.S. stock market began to crash, marking the unofficial beginning of the Great Depression.
It's been said that if you laid every economist in the world on the ground end-to-end, you would never reach a conclusion. As proof, here's an opposing viewpoint on the U.S. stock market.
It really does now look like President Donald J. Trump, and markets are plunging. When might we expect them to recover?
Frankly, I find it hard to care much, even though this is my specialty. The disaster for America and the world has so many aspects that the economic ramifications are way down my list of things to fear.
Still, I guess people want an answer: If the question is when markets will recover, a first-pass answer is never.
- Paul Krugman, 9 November 2016, after which, the U.S. stock market quickly rose to reach a series of all-time-record highs over the next several months.
Some statements have to do with the health of the U.S. economy.
The Federal Reserve is not currently forecasting a recession.
- Ben Bernanke, 10 January 2008. Some time later, the National Bureau of Economic Research would mark December 2007 as the peak of the U.S. economy's period of expansion before it entered into the "Great Recession", where January 2008 was its first month of economic contraction.
But rest assured, all is well for the U.S. economy now.
"Would I say there will never, ever be another financial crisis?" Yellen said at a question-and-answer event in London.
"You know probably that would be going too far but I do think we're much safer and I hope that it will not be in our lifetimes and I don't believe it will be," she said.
- Janet Yellen, 27 June 2017
It's almost like the Fed Chair is asking for that to be her economic epitaph!
Image Credit: Tombstone Builder
Labels: none really
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.