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
One of the more surprisingly popular posts that we've featured this year was "A Centrist's Guide to Media Bias and Usefulness", in which we featured a chart that ranks general news reporting web sites by the information quality of their reporting and a more accurate indication of their relative position on today's political spectrum than an earlier version that had gone viral.
So we were intrigued when we found that RealClearScience's Ross Pomeroy and Tom Hartsfield had joined with the American Council on Science and Health's Alex Berezow (formerly of RealClearScience) to create a similar chart for science news web sites.
Although here, they adapted the measure of information quality to focus more on how strongly evidence-based the stories covered by the science news sites they evaluated were, which they then assessed against a non-political spectrum that assesses how accessible or compelling each sites' stories would be to a general audience. Here's the chart they developed:
Overall, their rankings are pretty solid, though we might tweak the placement of some of the sources (we would rank Wired slightly higher on the "compelling" measure for example, although that's attributable to the kinds of science news stories that we find interesting.
As for what sites we'd like to see added to the rankings, we would put Phys.org on the list, although it has considerable overlap with LiveScience as a news aggregator, it covers more fields of science. Its downside is that a lot of the stories it picks up read like press releases, so for a lot of stories, it would only fall in the "sometimes compelling" categorization.
We'd also look to add more maths into the mix, which though it falls outside the focus on evidence-based science, where mathematics news is concerned, there are considerably fewer sites that generate anything close to what might make for compelling reading by a general audience. And really, we'd recommend just three for that kind of consumption: Quanta and +Plus, for written word reporting, and BBC Radio 4's More or Less, which is presented in audio format.
Labels: quality
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.