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
Imagine if one of the following bad and unexpected things has just happened to you.
We hope that none of these things is an everyday occurrence for you. After all, if any of them were, they wouldn't really be unexpected and would be something for which you could specifically plan. But not these kinds of events. When things like these events happen, their timing is random and they come as a surprise. Being what they are, that often also means dealing with large and unexpected bills for you to pay.
While they may not be the kinds of things for which you may have a specific plan to address, they are exactly the kinds of things for which many personal finance experts recommend you have emergency savings to pay for, whether in part or in full. Emergency savings are perhaps the cheapest insurance you can have to deal with the unexpected costs of a personal emergency.
But how much do these kinds of emergency expenses cost? In truth, that's something that will vary a lot from person to person and the nature of the unexpected events themselves. There is however some average cost data for each of the unexpected event scenarios we've outlined, which might be useful in plan out how much you need to have for your emergency savings. Or at least seeing if they can handle the cost of a "typical" unexpected emergency event.
The following interactive chart presents a range of "average" costs for each of our unexpected scenarios. Please hover your cursor over the low, average, and high-end estimate to get the numbers for each scenario (if you've accessed this article on a site that republishes our RSS news feed, you may need to click through to our site to access a working version):
Here's where the numbers come from for each scenario:
A lot of these estimates are taken from the annual costs of "typical" maintenance and repair procedures. Since many of these unexpected events won't happen each year, you could aim at saving the "low" end estimates each year as your regular emergency savings plan or more if your income allows it, and build it up over time to where you can handle bigger emergencies. As for how much you might need to have altogether in any designated emergency savings you have, that's a different question for a different day.
Image credit: Car accident by shuets udono on Flickr. Creative Commons CC by-SA 2.0 Attribution-Sharealike 2.0 Generic Deed.
Labels: data visualization, ideas, personal finance
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.