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
How much does quiet cost?
Putting a price on a seemingly intangible thing can be quite a challenge, which is what made our latest project really irresistible! And quiet is something that is especially intangible, because if you think about it, quiet is defined as being the absence of noise. How can it be possible to measure something that literally isn't there?
But we figured out how to do it. And we did it by shopping for a dishwasher!
You see, dishwashers are inherently noisy devices. Most standard dishwashers make as much noise as might be found in a busy office or restaurant. That level of sound can make it tough to do things like carry a conversation or watch a television at a reasonable volume while a dishwasher is running in the next room.
And because people would really rather not hear their dishwashers so much, or more accurately, would really rather hear other things while their dishwashers are running, many will pay a premium to buy a dishwasher that generates fewer decibels of noise.
Our following chart takes data compiled for the price and noise level generated for the 544 models of dishwashers for which we were able to obtain both bits of data:
Running a simple linear regression with the data, we find that for every one decibel reduction in the noise produced by a dishwasher, people would appear to be willing to pay an additional $50.87.
Given the way people perceive noise, a dishwasher model that generates 10 decibels less noise than another unit would be half as loud. The average cost of the additional "quiet" that would be obtained for a model that is half as loud then would be $508.70!
And that is how to find the price of quiet!
On a final note, we should recognize that much of the variation in price for each decibel amount shown in the chart above really represents the differences in cost due to "other" features of the dishwashers, such as color or materials. By itself, the decibel level would seem to only "explain" 65% of the price of the 554 dishwasher models we've shown on the chart!
Labels: economics
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.