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
When it comes to mobility, people are creatures of habit. Most people spend about 40% of their time in just two places with much of their remaining time spent visiting anywhere from 5 to 50 other places, which they visit with diminishing regularity. What's more, we can predict the likelihood that an individual is a certain distance away from their preferred two places.
We know this because the typical daily travel of a large sample of people was tracked and analyzed by Marta C. González, César A. Hidalgo and Albert-László Barabási, who studied the trajectory of 100,000 anonymous mobile phone users over a six-month period of time and found that when it comes to mobility patterns, the distance humans travel is remarkably predictable. Their findings are presented in the June 2008 paper Understanding Individual Human Mobility Patterns.
Using the geographic data provided by the observed sample's mobile phone use, which allowed the researchers to determine the location of the tracked individuals with respect to the cell phone towers through which their calls were processed, González, Hidalgo and Barabási observed that human mobility was not random, but rather best described by a kind of probability distribution called a Truncated Lévy Flight (TLF). This kind of probability distribution was first introduced in 1996 by Rosario N. Mantegna and H. Eugene Stanley and is a special "bounded" case of a "fat-tailed" probability distribution first described by French mathematician Paul Pierre Lévy and known as a Lévy flight.
Here, the distance traveled by an individual follows a power-law distribution. Most distances people travel are short, but there is a significant probability that individuals will travel a long distance, more so than would be predicted using the well-established statistical math given by a normal probability distribution. Since the distance an individual can travel is not infinite, the probability distribution given by Mantegna and Stanley's truncated Lévy flight works best to describe the likelihood that an individual has traveled a certain distance.
We thought it might be fun to build a tool using the results of Gonzalez, Hidalgo and Barabasi's study to find the probability that an individual has traveled a given distance that the authors have referenced with respect to a typical "radius of gyration," which we'll describe as being the distance typically traveled between "home" and "work", or in the authors' terminology, an individual's "preferred locations."
We'll conclude that this kind of information might be really useful is in fighting communicable diseases, where knowing how mobile people are can help better focus epidemic prevention efforts. For our interests, the kind of math described by this research is very similar to that which can best describe how stock prices change over time.
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.