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
As the pioneer (okay, if somebody started doing it before us, we don't know about it!) in bringing web-based calculation tools to the blogosphere, we here at Political Calculations always keep an eye out for other tools developed in other places. Today, we'll drop in on some tools brought to life at other blogs! First up, MyMoneyBlog, which featured the following tools in recent months:
This is a neat tool that estimates your annual percentage yield (APY) from the U.S. 28-day T-bill, taking into account how they actually work (you can't roll-over the entire value of a T-bill after it comes due into a new 28-day T-bill, but you can direct the excess proceeds to an interest-bearing bank account.) It's a very specialized type of investing math that only applies in a unique situation - and it's exactly the kind of application that makes more sense to post in the context of a blog than it does anywhere else.
The only tool I've ever seen that considers how long your investing money is out of action when moving it from an account earning a lower rate of return to a higher one!
Meanwhile, Nathan Whitehead's Paranoid Brain has been at work in developing some pretty interesting tools (or "toys" in paranoid parlance!) Here's a quick sampling of tools posted since we previously noted Nathan's work:
Great fun for statistics fans! The only tool I've encountered that points to the difference between geometric and arithmetic mean, then approximates it!
The first step to weathering a potential financial crisis is planning for it - Nathan's tool for determining how long it will take to set aside a certain number of months of your income is an essential part of that exercise and is therefore one of the better personal finance tools I've come across.
Are you a gambler? Want to determine the optimal size for your bets? This tool is for you!
Want to see the likely range of your investment return in a diversified portfolio over various time intervals, given the average rate of return you have plus its standard deviation? A Political Calculations' Gold Standard tool for its combination of simple user-interface and high information return! (And, we might add, only the second tool to which we've ever awarded the designation!)
Just in case you thought "Paranoid Brain" was just a catch-phrase! This tool was posted on the same day as Nathan's "Less Risky" calculator, but much earlier! This tool uses a different statistical distribution which applies to the returns of a single stock rather than those of a diversified portfolio of stocks. Be sure to read through Nathan's discussion where he catches his initial error!
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.