<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: The Virginia AG&#8217;s Attack on Climate Scientists</title>
	<atom:link href="http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/</link>
	<description>Where science collides with life, slams into culture, crashes with politics, and gets totaled.</description>
	<lastBuildDate>Tue, 27 Sep 2011 17:28:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Nullius in Verba</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57509</link>
		<dc:creator>Nullius in Verba</dc:creator>
		<pubDate>Wed, 05 May 2010 15:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57509</guid>
		<description>Jinchi,

#112,
&quot;This is flat out wrong. Peer reviewers absolutely do check calculations, check references and check observations.&quot;

When Steve McIntyre was reviewing a paper, he asked the journal to provide the data so he could check it. The journal editor (Stephen Schneider I believe) replied that nobody had ever asked for data before, and that he would not be provided with it.

When he asked for background data on a paper during his review for the IPCC, Susan Solomon not only refused, but said that he would be thrown off the list of reviewers if he &quot;abused&quot; his position as an IPCC reviewer by demanding data again.

No. They don&#039;t check. Until McIntyre came along, nobody had checked Mann&#039;s data - if they had, they would immediately have found all the flaws in it. They would have immediately found that the result wasn&#039;t calculated in the way Mann said it had; that there were a whole list of unpublished steps.

It may be the practice in other areas of science (it depends on the journal, I suspect), but there are plenty of other academics who have said exactly the same thing. Peer-review does not offer any guarantee of accuracy.</description>
		<content:encoded><![CDATA[<p>Jinchi,</p>
<p>#112,<br />
&#8220;This is flat out wrong. Peer reviewers absolutely do check calculations, check references and check observations.&#8221;</p>
<p>When Steve McIntyre was reviewing a paper, he asked the journal to provide the data so he could check it. The journal editor (Stephen Schneider I believe) replied that nobody had ever asked for data before, and that he would not be provided with it.</p>
<p>When he asked for background data on a paper during his review for the IPCC, Susan Solomon not only refused, but said that he would be thrown off the list of reviewers if he &#8220;abused&#8221; his position as an IPCC reviewer by demanding data again.</p>
<p>No. They don&#8217;t check. Until McIntyre came along, nobody had checked Mann&#8217;s data &#8211; if they had, they would immediately have found all the flaws in it. They would have immediately found that the result wasn&#8217;t calculated in the way Mann said it had; that there were a whole list of unpublished steps.</p>
<p>It may be the practice in other areas of science (it depends on the journal, I suspect), but there are plenty of other academics who have said exactly the same thing. Peer-review does not offer any guarantee of accuracy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nullius in Verba</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57504</link>
		<dc:creator>Nullius in Verba</dc:creator>
		<pubDate>Wed, 05 May 2010 14:50:50 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57504</guid>
		<description>#111,

Steve McIntyre has said in the past that he&#039;s inclined to accept basic AGW theory, and that his view is that politicians would be sensible to accept the IPCC&#039;s findings. For those who think it&#039;s a matter of politics, he has also described his political position as corresponding to a &quot;Clinton Democrat&quot;. Canada tends to be a bit more liberal than the US, anyway.

But if bias against AGW renders work untrustworthy, then what does bias for AGW do?

NASA do indeed have a lot of climate change information, but unfortunately, while some bits of NASA&#039;s output are bullet proof, other bits aren&#039;t. In particular I have indeed seen some of the code they used, and even as a person inclined to doubt their output, I was shocked.

Here&#039;s a bit:
      SUBROUTINE CMBINE (AVG,WT,IWT, DNEW,NF1,NL1,WT1, ID,NSM,NCOM)
C****
C**** Bias of new data is removed by subtracting the difference
C**** over the common domain. Then the new data are averaged in.
C****
      COMMON/LIMIT/XBAD,NLAP
      DIMENSION AVG(*),DNEW(*),WT(*),IWT(*)
C**** Loop over years
      NSM=0
C**** Find means over common domain to compute bias
      SUMN=0
      SUM=0
      NCOM=0
      DO 10 N=NF1,NL1
      IF(AVG(N).GE.XBAD.OR.DNEW(N).GE.XBAD) GO TO 10
      NCOM=NCOM+1
      SUM=SUM+AVG(N)
      SUMN=SUMN+DNEW(N)
   10 CONTINUE
      IF(NCOM.LT.NLAP) RETURN
      BIAS=(SUM-SUMN)/FLOAT(NCOM)
C**** Update period of valid data, averages and weights
      DO 20 N=NF1,NL1
      IF(DNEW(N).GE.XBAD) GO TO 20
      WTNEW=WT(N)+WT1
      AVG(N)=(WT(N)*AVG(N)+WT1*(DNEW(N)+BIAS))/WTNEW
      WT(N)=WTNEW
      IWT(N)=IWT(N)+1
      NSM=NSM+1
   20 CONTINUE
   50 CONTINUE
      RETURN
      END

This particular bit of code was of special interest, because it was errors discovered in this part that ultimately led to Steve McIntyre forcing NASA to finally publish the code, after many years of resistance. Steve had managed to reverse engineer how the code works from its output - a brilliant tour de force of detective work. It contains the adjustment for merging fragments of series from one location that have come via different routes into a single series. What it does is to look at the two bits during the overlap period, find the difference between the averages during this time, and then add this offset to one of them before splicing them. It&#039;s supposed to compensate for systematic differences between different temperature monitoring stations.

However, it sometimes happens that you get data from the &lt;i&gt;same&lt;/i&gt; station via different routes, which get merged by the same routine. If there are transcription errors or missing values in one portion, the averages during the overlap will be different, and one bit will be shifted relative to the other, even though &lt;i&gt;they are exactly the same data&lt;/i&gt;. This introduces erroneous trends into the result.

The size of the error that resulted was not particularly significant, but the point of the discovery was to show how poorly the code had been validated. As you can see from the above snippet, the variable names are short and not meaningful, there are few comments and they&#039;re very terse, there is no documentation, there is dead code from previous versions left in (The &quot;50 CONTINUE&quot; line isn&#039;t called from anywhere and doesn&#039;t do anything), there&#039;s no error checking, the computer language (Fortran 77) is archaic, poorly structured, and hard to read, and it is littered with a spaghetti of GOTOs jumping everywhere. It&#039;s hard to understand, even for a coder.

There are several other problems with it too, to do with integer division, but I won&#039;t get into that now.

This standard of code would get spat back with a &#039;fail&#039; in even a first year computer science homework. And yet this is what NASA use today to generate GISTEMP, one of the most prominent temperature series in the world.

Anyway, now that the code is out in the open, a bunch of software engineers are busy re-writing it to modern coding standards. See their presentation on progress &lt;a href=&quot;http://clearclimatecode.org/&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;. I believe NASA have already said they&#039;ll be adopting it as soon as possible.

Besides NASA, there are also a range of other temperature reconstructions from various groups, and yes, I have looked at them. Several of them use Mann&#039;s output as one of their inputs - in particular, the noamer1 series that Mann constructed for North America, and which is dominated by a small group of Bristlecone pines in one small corner. (And which were already known not to be temperature-sensitive.) The reconstructions that don&#039;t use Bristlecones almost all use another series called Yamal, which was recently discovered to depend for its hockeystick-shaped signal on &lt;i&gt;a single tree&lt;/i&gt;. (Called YAD061 in the record.) The story of how the Yamal data finally got published more than ten years after it was first requested is also a fascinating story, but too long to do it justice here.

Seriously, if you&#039;re interested in knowing the full story, there&#039;s a book called The Hockey Stick Illusion that tells the entire tale. If you want to be able to argue that the sceptics are wrong, you need to know what they&#039;re saying first.</description>
		<content:encoded><![CDATA[<p>#111,</p>
<p>Steve McIntyre has said in the past that he&#8217;s inclined to accept basic AGW theory, and that his view is that politicians would be sensible to accept the IPCC&#8217;s findings. For those who think it&#8217;s a matter of politics, he has also described his political position as corresponding to a &#8220;Clinton Democrat&#8221;. Canada tends to be a bit more liberal than the US, anyway.</p>
<p>But if bias against AGW renders work untrustworthy, then what does bias for AGW do?</p>
<p>NASA do indeed have a lot of climate change information, but unfortunately, while some bits of NASA&#8217;s output are bullet proof, other bits aren&#8217;t. In particular I have indeed seen some of the code they used, and even as a person inclined to doubt their output, I was shocked.</p>
<p>Here&#8217;s a bit:<br />
      SUBROUTINE CMBINE (AVG,WT,IWT, DNEW,NF1,NL1,WT1, ID,NSM,NCOM)<br />
C****<br />
C**** Bias of new data is removed by subtracting the difference<br />
C**** over the common domain. Then the new data are averaged in.<br />
C****<br />
      COMMON/LIMIT/XBAD,NLAP<br />
      DIMENSION AVG(*),DNEW(*),WT(*),IWT(*)<br />
C**** Loop over years<br />
      NSM=0<br />
C**** Find means over common domain to compute bias<br />
      SUMN=0<br />
      SUM=0<br />
      NCOM=0<br />
      DO 10 N=NF1,NL1<br />
      IF(AVG(N).GE.XBAD.OR.DNEW(N).GE.XBAD) GO TO 10<br />
      NCOM=NCOM+1<br />
      SUM=SUM+AVG(N)<br />
      SUMN=SUMN+DNEW(N)<br />
   10 CONTINUE<br />
      IF(NCOM.LT.NLAP) RETURN<br />
      BIAS=(SUM-SUMN)/FLOAT(NCOM)<br />
C**** Update period of valid data, averages and weights<br />
      DO 20 N=NF1,NL1<br />
      IF(DNEW(N).GE.XBAD) GO TO 20<br />
      WTNEW=WT(N)+WT1<br />
      AVG(N)=(WT(N)*AVG(N)+WT1*(DNEW(N)+BIAS))/WTNEW<br />
      WT(N)=WTNEW<br />
      IWT(N)=IWT(N)+1<br />
      NSM=NSM+1<br />
   20 CONTINUE<br />
   50 CONTINUE<br />
      RETURN<br />
      END</p>
<p>This particular bit of code was of special interest, because it was errors discovered in this part that ultimately led to Steve McIntyre forcing NASA to finally publish the code, after many years of resistance. Steve had managed to reverse engineer how the code works from its output &#8211; a brilliant tour de force of detective work. It contains the adjustment for merging fragments of series from one location that have come via different routes into a single series. What it does is to look at the two bits during the overlap period, find the difference between the averages during this time, and then add this offset to one of them before splicing them. It&#8217;s supposed to compensate for systematic differences between different temperature monitoring stations.</p>
<p>However, it sometimes happens that you get data from the <i>same</i> station via different routes, which get merged by the same routine. If there are transcription errors or missing values in one portion, the averages during the overlap will be different, and one bit will be shifted relative to the other, even though <i>they are exactly the same data</i>. This introduces erroneous trends into the result.</p>
<p>The size of the error that resulted was not particularly significant, but the point of the discovery was to show how poorly the code had been validated. As you can see from the above snippet, the variable names are short and not meaningful, there are few comments and they&#8217;re very terse, there is no documentation, there is dead code from previous versions left in (The &#8220;50 CONTINUE&#8221; line isn&#8217;t called from anywhere and doesn&#8217;t do anything), there&#8217;s no error checking, the computer language (Fortran 77) is archaic, poorly structured, and hard to read, and it is littered with a spaghetti of GOTOs jumping everywhere. It&#8217;s hard to understand, even for a coder.</p>
<p>There are several other problems with it too, to do with integer division, but I won&#8217;t get into that now.</p>
<p>This standard of code would get spat back with a &#8216;fail&#8217; in even a first year computer science homework. And yet this is what NASA use today to generate GISTEMP, one of the most prominent temperature series in the world.</p>
<p>Anyway, now that the code is out in the open, a bunch of software engineers are busy re-writing it to modern coding standards. See their presentation on progress <a href="http://clearclimatecode.org/" rel="nofollow">here</a>. I believe NASA have already said they&#8217;ll be adopting it as soon as possible.</p>
<p>Besides NASA, there are also a range of other temperature reconstructions from various groups, and yes, I have looked at them. Several of them use Mann&#8217;s output as one of their inputs &#8211; in particular, the noamer1 series that Mann constructed for North America, and which is dominated by a small group of Bristlecone pines in one small corner. (And which were already known not to be temperature-sensitive.) The reconstructions that don&#8217;t use Bristlecones almost all use another series called Yamal, which was recently discovered to depend for its hockeystick-shaped signal on <i>a single tree</i>. (Called YAD061 in the record.) The story of how the Yamal data finally got published more than ten years after it was first requested is also a fascinating story, but too long to do it justice here.</p>
<p>Seriously, if you&#8217;re interested in knowing the full story, there&#8217;s a book called The Hockey Stick Illusion that tells the entire tale. If you want to be able to argue that the sceptics are wrong, you need to know what they&#8217;re saying first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jinchi</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57500</link>
		<dc:creator>Jinchi</dc:creator>
		<pubDate>Wed, 05 May 2010 14:02:52 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57500</guid>
		<description>&lt;i&gt;But a peer-reviewer does not check a paper for accuracy – he does not re-do calculations or experiments, analyse data, chase references, or check observations.&lt;/i&gt;

This is flat out wrong. Peer reviewers absolutely do check calculations, check references and check observations. They may not have access to specific samples or equipment required to validate whole experiments. But they certainly do check for accuracy. Even if all of those checks work out, reviewers often insist that a paper include additional analyses or different methodology to back up conclusions. Reviewers are also chosen because they have enough experience in the field to see fundamental flaws in an experimental design.

And in cases where the data are public, codes are widely available and the study largely mathematical (like much of the work in climatology) it is possible to validate study results entirely.

&lt;i&gt;It is a far more cursory examination. Is it going to be of interest to the journal’s audience? Is it novel and useful? Does it provide enough detailed information for a reader to be able to tell what was done, replicate, or check? Does the weight of evidence support the claims?&lt;/i&gt;

What you are describing is the job of the editor, not the peer reviewer. 

&lt;i&gt;I’ve done peer-review in the past, so I do know.&lt;/i&gt;

Well then you&#039;ve done it wrong.</description>
		<content:encoded><![CDATA[<p><i>But a peer-reviewer does not check a paper for accuracy – he does not re-do calculations or experiments, analyse data, chase references, or check observations.</i></p>
<p>This is flat out wrong. Peer reviewers absolutely do check calculations, check references and check observations. They may not have access to specific samples or equipment required to validate whole experiments. But they certainly do check for accuracy. Even if all of those checks work out, reviewers often insist that a paper include additional analyses or different methodology to back up conclusions. Reviewers are also chosen because they have enough experience in the field to see fundamental flaws in an experimental design.</p>
<p>And in cases where the data are public, codes are widely available and the study largely mathematical (like much of the work in climatology) it is possible to validate study results entirely.</p>
<p><i>It is a far more cursory examination. Is it going to be of interest to the journal’s audience? Is it novel and useful? Does it provide enough detailed information for a reader to be able to tell what was done, replicate, or check? Does the weight of evidence support the claims?</i></p>
<p>What you are describing is the job of the editor, not the peer reviewer. </p>
<p><i>I’ve done peer-review in the past, so I do know.</i></p>
<p>Well then you&#8217;ve done it wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57493</link>
		<dc:creator>Guy</dc:creator>
		<pubDate>Wed, 05 May 2010 12:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57493</guid>
		<description>@Nullius #110,

There&#039;s a lot more supporting information out there. You say you have a scientific background. I suggest you do your own study, but try to avoid letting bias get in the way of finding out the truth. That&#039;s the main problem with people like McIntyre. He is biased against AGW theory so all his work is muddied by it, and so it can not really be trusted.

NASA has a lot of climate change information and their work is probably the most bullet proof stuff there is. It might be a good idea to see how they used their own data and methods to arrive at the the same hockey stick as Dr. Mann.  Several other have done this independent verification work too so they might also be worth taking a look at.</description>
		<content:encoded><![CDATA[<p>@Nullius #110,</p>
<p>There&#8217;s a lot more supporting information out there. You say you have a scientific background. I suggest you do your own study, but try to avoid letting bias get in the way of finding out the truth. That&#8217;s the main problem with people like McIntyre. He is biased against AGW theory so all his work is muddied by it, and so it can not really be trusted.</p>
<p>NASA has a lot of climate change information and their work is probably the most bullet proof stuff there is. It might be a good idea to see how they used their own data and methods to arrive at the the same hockey stick as Dr. Mann.  Several other have done this independent verification work too so they might also be worth taking a look at.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nullius in Verba</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57482</link>
		<dc:creator>Nullius in Verba</dc:creator>
		<pubDate>Wed, 05 May 2010 11:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57482</guid>
		<description>Guy,

#108.
Thanks for the link. But I&#039;m after something in a bit more depth.

Regarding this particular page, I noted the bit where they say ice ages take 5,000 years to warm 7C, so the recent rise is 8 times faster than previous warming. This is incorrect.

Temperature shows different rates of warming on different time scales, because it is a fractal process. It&#039;s a bit like asking how long the coastline of an island is - look at it coarsely and you get one number, look at the finer detail and you get a much bigger number, measure round each rock and pebble, and you get a huge number. Temperature works the same way. The rate of rise or fall can be much faster over short intervals.

Here&#039;s an easy experiment to do, that is well worth it for the intuition it gives you about such processes. Use a spreadsheet to generate a series in which the first term is zero, and then each term after that is 0.99 times the previous value, plus a zero-mean random number.
In Excel for example, you can do this with the formula
A1 = 0
A2 = 0.99*A1 + NORMSINV(RAND())
A3 = 0.99*A2 + NORMSINV(RAND())
A4 = 0.99*A3 + NORMSINV(RAND())
etc.

(or if you find it easier to follow, you can use A2 = 0.99*A1 + (RAND()-0.5).)

Continue it for a few thousand lines, and then plot a graph of the data.

You will see that over long periods things are fairly slow and flat, but as you look at shorter and shorter intervals, it gets wilder with long, steep rises and falls. The behaviour over short intervals can vary much more rapidly than it does over long ones.

(Note, I&#039;m &lt;i&gt;not&lt;/i&gt; saying that temperatures follow this particular sort of process. This is a simple example to build intuition about stochastic persistence. The models they fit to simulate real temperatures are a bit more complicated. Nor am I saying that climate is just random numbers - it&#039;s just that the output of chaotic processes often act as if they were random.)

It&#039;s also worth changing that 0.99 to a zero, so you get pure white noise randomness. Which graph looks more like temperature data?

Another thing worth knowing about is the Central England Temperature series - known as HadCET to the trade. This measured temperatures in England back to the 1600s, and it shows several extended trends. The biggest, from about 1680 to 1733 was bigger, longer, and steeper than the rise in temperature in the modern period. It started from a much lower point, and peaked just short of the present day maximum.
(You can download the data from the internet if you want to check.)

The problem of course is that while we know that on a &lt;i&gt;local&lt;/i&gt; scale the modern warming is &lt;i&gt;not&lt;/i&gt; unprecedented, we don&#039;t have the worldwide records to be able to say whether 1733 was a global phenomenon.</description>
		<content:encoded><![CDATA[<p>Guy,</p>
<p>#108.<br />
Thanks for the link. But I&#8217;m after something in a bit more depth.</p>
<p>Regarding this particular page, I noted the bit where they say ice ages take 5,000 years to warm 7C, so the recent rise is 8 times faster than previous warming. This is incorrect.</p>
<p>Temperature shows different rates of warming on different time scales, because it is a fractal process. It&#8217;s a bit like asking how long the coastline of an island is &#8211; look at it coarsely and you get one number, look at the finer detail and you get a much bigger number, measure round each rock and pebble, and you get a huge number. Temperature works the same way. The rate of rise or fall can be much faster over short intervals.</p>
<p>Here&#8217;s an easy experiment to do, that is well worth it for the intuition it gives you about such processes. Use a spreadsheet to generate a series in which the first term is zero, and then each term after that is 0.99 times the previous value, plus a zero-mean random number.<br />
In Excel for example, you can do this with the formula<br />
A1 = 0<br />
A2 = 0.99*A1 + NORMSINV(RAND())<br />
A3 = 0.99*A2 + NORMSINV(RAND())<br />
A4 = 0.99*A3 + NORMSINV(RAND())<br />
etc.</p>
<p>(or if you find it easier to follow, you can use A2 = 0.99*A1 + (RAND()-0.5).)</p>
<p>Continue it for a few thousand lines, and then plot a graph of the data.</p>
<p>You will see that over long periods things are fairly slow and flat, but as you look at shorter and shorter intervals, it gets wilder with long, steep rises and falls. The behaviour over short intervals can vary much more rapidly than it does over long ones.</p>
<p>(Note, I&#8217;m <i>not</i> saying that temperatures follow this particular sort of process. This is a simple example to build intuition about stochastic persistence. The models they fit to simulate real temperatures are a bit more complicated. Nor am I saying that climate is just random numbers &#8211; it&#8217;s just that the output of chaotic processes often act as if they were random.)</p>
<p>It&#8217;s also worth changing that 0.99 to a zero, so you get pure white noise randomness. Which graph looks more like temperature data?</p>
<p>Another thing worth knowing about is the Central England Temperature series &#8211; known as HadCET to the trade. This measured temperatures in England back to the 1600s, and it shows several extended trends. The biggest, from about 1680 to 1733 was bigger, longer, and steeper than the rise in temperature in the modern period. It started from a much lower point, and peaked just short of the present day maximum.<br />
(You can download the data from the internet if you want to check.)</p>
<p>The problem of course is that while we know that on a <i>local</i> scale the modern warming is <i>not</i> unprecedented, we don&#8217;t have the worldwide records to be able to say whether 1733 was a global phenomenon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nullius in Verba</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57480</link>
		<dc:creator>Nullius in Verba</dc:creator>
		<pubDate>Wed, 05 May 2010 11:02:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57480</guid>
		<description>Guy,

#105.
This article is incorrect. Under the scientific method, when results are published, the rest of the scientific community examine them, attempt to replicate them, knock them down, extend them, and so on. If a published result subjected to this barrage survives the process, it gains in credibility. If it can&#039;t be replicated, or alternative explanations are found, or the methods are shown to be flawed, then it is rejected. It stays in the literature, but scientists who know the literature also know that it is not to be relied upon. This extended process, that can take years or decades, could be described as &#039;peer review&#039;.

But journal peer review is entirely different, serving a different function. Back in the old days of science, scientists communicated their results by writing letters to one another, but because this was so inefficient, they got together into societies that acted as central distribution points. Letters and results were submitted, and all the members of the society could read the published journal. The journals, hungry for subscriptions, were keen that papers published would be interesting, relevant, and competently done for their audience, so the editor would select what he considered the best papers. Occasionally, if he didn&#039;t have the relevant expertise, he would ask the opinion of an outside expert. It wasn&#039;t until the 50s if I remember correctly that external peer-review was expanded to the system we have today. But a peer-reviewer does &lt;i&gt;not&lt;/i&gt; check a paper for accuracy - he does not re-do calculations or experiments, analyse data, chase references, or check observations. It is a far more cursory examination. Is it going to be of interest to the journal&#039;s audience? Is it novel and useful? Does it provide enough detailed information for a reader to be able to tell what was done, replicate, or check? Does the weight of evidence support the claims? (As in Sagan&#039;s dictum: extraordinary claims require extraordinary evidence.) Does it contradict other work or standard results in the field, and if so is the conflict addressed? And does it appear to be competently done, with no &lt;i&gt;obvious&lt;/i&gt; errors? Basically, it asks the question: is this worth your time looking at? It offers no guarantee that it is correct.

Journal peer-review is an editorial function. Rather than the entire community of scientists, it is conducted by a mere two or three, over a couple of weeks, of part-time unpaid work. Journals and peer-reviewers can often have their own professional prejudices. (If you work in academia, you get to know what these are and what journals will publish what.) And a paper can be rejected for not fitting the journal&#039;s intended audience as easily as for any errors.

I&#039;ve done peer-review in the past, so I do know.

So you see, when Steve McIntyre asked to download Dr Mann&#039;s data, so that he could try to replicate it, that was the scientific process moving forward. And when he found problems with it, that ought to have triggered the community to have another look, and if necessary revise it or even throw it out. The fact that they haven&#039;t shows that something has gone wrong with the scientific process in this area.

This is not really all that unusual. During the 1930s, the scientific establishment led by the British astronomer Eddington rejected black holes as a possibility, after Chandrasekhar first demonstrated them as an inevitable solution to Einstein&#039;s field equations in general relativity. Other prominent physicists, such as Pauli and Bohr agreed with Chandrasekhar privately, but would not support him publicly against the astrophysical community. As Max Planck said, &quot;Science advances one funeral at a time.&quot; It took several decades before black holes were generally accepted. Chandrasekhar eventually won the Nobel prize for his work.

Scientists themselves are human. Science will self-correct eventually; it always does. But it may take some time.</description>
		<content:encoded><![CDATA[<p>Guy,</p>
<p>#105.<br />
This article is incorrect. Under the scientific method, when results are published, the rest of the scientific community examine them, attempt to replicate them, knock them down, extend them, and so on. If a published result subjected to this barrage survives the process, it gains in credibility. If it can&#8217;t be replicated, or alternative explanations are found, or the methods are shown to be flawed, then it is rejected. It stays in the literature, but scientists who know the literature also know that it is not to be relied upon. This extended process, that can take years or decades, could be described as &#8216;peer review&#8217;.</p>
<p>But journal peer review is entirely different, serving a different function. Back in the old days of science, scientists communicated their results by writing letters to one another, but because this was so inefficient, they got together into societies that acted as central distribution points. Letters and results were submitted, and all the members of the society could read the published journal. The journals, hungry for subscriptions, were keen that papers published would be interesting, relevant, and competently done for their audience, so the editor would select what he considered the best papers. Occasionally, if he didn&#8217;t have the relevant expertise, he would ask the opinion of an outside expert. It wasn&#8217;t until the 50s if I remember correctly that external peer-review was expanded to the system we have today. But a peer-reviewer does <i>not</i> check a paper for accuracy &#8211; he does not re-do calculations or experiments, analyse data, chase references, or check observations. It is a far more cursory examination. Is it going to be of interest to the journal&#8217;s audience? Is it novel and useful? Does it provide enough detailed information for a reader to be able to tell what was done, replicate, or check? Does the weight of evidence support the claims? (As in Sagan&#8217;s dictum: extraordinary claims require extraordinary evidence.) Does it contradict other work or standard results in the field, and if so is the conflict addressed? And does it appear to be competently done, with no <i>obvious</i> errors? Basically, it asks the question: is this worth your time looking at? It offers no guarantee that it is correct.</p>
<p>Journal peer-review is an editorial function. Rather than the entire community of scientists, it is conducted by a mere two or three, over a couple of weeks, of part-time unpaid work. Journals and peer-reviewers can often have their own professional prejudices. (If you work in academia, you get to know what these are and what journals will publish what.) And a paper can be rejected for not fitting the journal&#8217;s intended audience as easily as for any errors.</p>
<p>I&#8217;ve done peer-review in the past, so I do know.</p>
<p>So you see, when Steve McIntyre asked to download Dr Mann&#8217;s data, so that he could try to replicate it, that was the scientific process moving forward. And when he found problems with it, that ought to have triggered the community to have another look, and if necessary revise it or even throw it out. The fact that they haven&#8217;t shows that something has gone wrong with the scientific process in this area.</p>
<p>This is not really all that unusual. During the 1930s, the scientific establishment led by the British astronomer Eddington rejected black holes as a possibility, after Chandrasekhar first demonstrated them as an inevitable solution to Einstein&#8217;s field equations in general relativity. Other prominent physicists, such as Pauli and Bohr agreed with Chandrasekhar privately, but would not support him publicly against the astrophysical community. As Max Planck said, &#8220;Science advances one funeral at a time.&#8221; It took several decades before black holes were generally accepted. Chandrasekhar eventually won the Nobel prize for his work.</p>
<p>Scientists themselves are human. Science will self-correct eventually; it always does. But it may take some time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57467</link>
		<dc:creator>Guy</dc:creator>
		<pubDate>Wed, 05 May 2010 02:49:32 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57467</guid>
		<description>@Nullius #106,

NASA has a really nice Q &amp; A page up. It might help to answer your questions.

http://earthobservatory.nasa.gov/blogs/climateqa/if-earth-has-warmed-and-cooled-throughout-history-what-makes-scientists-think-that-humans-are-causing-global-warming-now/?src=eoa-ann</description>
		<content:encoded><![CDATA[<p>@Nullius #106,</p>
<p>NASA has a really nice Q &#038; A page up. It might help to answer your questions.</p>
<p><a href="http://earthobservatory.nasa.gov/blogs/climateqa/if-earth-has-warmed-and-cooled-throughout-history-what-makes-scientists-think-that-humans-are-causing-global-warming-now/?src=eoa-ann" rel="nofollow">http://earthobservatory.nasa.gov/blogs/climateqa/if-earth-has-warmed-and-cooled-throughout-history-what-makes-scientists-think-that-humans-are-causing-global-warming-now/?src=eoa-ann</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: moptop</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57458</link>
		<dc:creator>moptop</dc:creator>
		<pubDate>Tue, 04 May 2010 23:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57458</guid>
		<description>Now I want Guy to show me where it is written that RealClimate overrules peer review.</description>
		<content:encoded><![CDATA[<p>Now I want Guy to show me where it is written that RealClimate overrules peer review.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nullius in Verba</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57447</link>
		<dc:creator>Nullius in Verba</dc:creator>
		<pubDate>Tue, 04 May 2010 20:44:44 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57447</guid>
		<description>#104,

Thank you. Yes. They say essentially that &lt;i&gt;&quot;A large number of scientists believe...&quot;&lt;/i&gt;, which is honest, at least. They correctly state that the primary evidence relied upon is model results from GCMs, they correctly say that the reliability of these has been called into question, but then unfortunately they answer that with a &quot;correlation implies causation&quot; argument based on the modern rise in temperature.

They essentially agree that all my concerns and questions exist, are valid, and not fully answered, but go on with a &quot;nevertheless...&quot; and cite the IPCC&#039;s opinion and the precautionary principle. (Which I&#039;ve always considered to be a modern version of Pascal&#039;s Wager.)

So I&#039;d say it was a fair statement of the position, but it doesn&#039;t actually answer my questions. That&#039;s a lot better than many, though.</description>
		<content:encoded><![CDATA[<p>#104,</p>
<p>Thank you. Yes. They say essentially that <i>&#8220;A large number of scientists believe&#8230;&#8221;</i>, which is honest, at least. They correctly state that the primary evidence relied upon is model results from GCMs, they correctly say that the reliability of these has been called into question, but then unfortunately they answer that with a &#8220;correlation implies causation&#8221; argument based on the modern rise in temperature.</p>
<p>They essentially agree that all my concerns and questions exist, are valid, and not fully answered, but go on with a &#8220;nevertheless&#8230;&#8221; and cite the IPCC&#8217;s opinion and the precautionary principle. (Which I&#8217;ve always considered to be a modern version of Pascal&#8217;s Wager.)</p>
<p>So I&#8217;d say it was a fair statement of the position, but it doesn&#8217;t actually answer my questions. That&#8217;s a lot better than many, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guy</title>
		<link>http://blogs.discovermagazine.com/intersection/2010/05/02/attack-on-climate-scientists/#comment-57446</link>
		<dc:creator>Guy</dc:creator>
		<pubDate>Tue, 04 May 2010 20:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.discovermagazine.com/intersection/?p=8251#comment-57446</guid>
		<description>Here is a good explanation of the peer review process.

&lt;li&gt;
HOW DO WE KNOW WHAT IS
SCIENTIFICALLY CORRECT?
The Peer Review Process
Science is an on-going process of making
observations and using evidence to test hypotheses.
As new ideas are developed and new data are
obtained, oftentimes enabled by new technologies,
our understanding evolves. The scientific community
uses a highly formalized version of peer review to
validate research results and our understanding
of their significance. Researchers describe their
experiments, results, and interpretations in
scientific manuscripts and submit them to a
scientific journal that specializes in their field of
science. Scientists who are experts in that field
serve as “referees” for the journal: they read the
manuscript carefully to judge the reliability of the
research design and check that the interpretations
are supported by the data. Based on the reviews,
journal editors may accept or reject manuscripts
or ask the authors to make revisions if the study
has insufficient data or unsound interpretations.
Through this process, only those concepts that
have been described through well-documented
research and subjected to the scrutiny of other
experts in the field become published papers in
science journals and accepted as current science
knowledge. Although peer review does not guarantee
that any particular published result is valid, it does
provide a high assurance that the work has been
carefully vetted for accuracy by informed experts
prior to publication. The overwhelming majority of
peer-reviewed papers about global climate change
acknowledge that human activities are substantially
contributing factors.
A meltwater stream on the Greenland Ice Sheet flows into the
ice through a tunnel called a moulin. About half of the loss
of Greenland’s ice mass flows into the North Atlantic Ocean
as melt water. Liquid water, which is denser than ice, can
penetrate through the ice sheet, lubricating the underside, and
also accelerate ice loss. Warmer temperatures cause melting
in the summer months, which leads to faster flow, drawing
more of the ice sheet down to warmer, lower altitudes.
Source: Roger J. Braithwaite, The University of Manchester, UK
&lt;/li&gt;

http://downloads.climatescience.gov/Literacy/Climate%20Literacy%20Booklet%20Low-Res.pdf</description>
		<content:encoded><![CDATA[<p>Here is a good explanation of the peer review process.</p>
<li>
HOW DO WE KNOW WHAT IS<br />
SCIENTIFICALLY CORRECT?<br />
The Peer Review Process<br />
Science is an on-going process of making<br />
observations and using evidence to test hypotheses.<br />
As new ideas are developed and new data are<br />
obtained, oftentimes enabled by new technologies,<br />
our understanding evolves. The scientific community<br />
uses a highly formalized version of peer review to<br />
validate research results and our understanding<br />
of their significance. Researchers describe their<br />
experiments, results, and interpretations in<br />
scientific manuscripts and submit them to a<br />
scientific journal that specializes in their field of<br />
science. Scientists who are experts in that field<br />
serve as “referees” for the journal: they read the<br />
manuscript carefully to judge the reliability of the<br />
research design and check that the interpretations<br />
are supported by the data. Based on the reviews,<br />
journal editors may accept or reject manuscripts<br />
or ask the authors to make revisions if the study<br />
has insufficient data or unsound interpretations.<br />
Through this process, only those concepts that<br />
have been described through well-documented<br />
research and subjected to the scrutiny of other<br />
experts in the field become published papers in<br />
science journals and accepted as current science<br />
knowledge. Although peer review does not guarantee<br />
that any particular published result is valid, it does<br />
provide a high assurance that the work has been<br />
carefully vetted for accuracy by informed experts<br />
prior to publication. The overwhelming majority of<br />
peer-reviewed papers about global climate change<br />
acknowledge that human activities are substantially<br />
contributing factors.<br />
A meltwater stream on the Greenland Ice Sheet flows into the<br />
ice through a tunnel called a moulin. About half of the loss<br />
of Greenland’s ice mass flows into the North Atlantic Ocean<br />
as melt water. Liquid water, which is denser than ice, can<br />
penetrate through the ice sheet, lubricating the underside, and<br />
also accelerate ice loss. Warmer temperatures cause melting<br />
in the summer months, which leads to faster flow, drawing<br />
more of the ice sheet down to warmer, lower altitudes.<br />
Source: Roger J. Braithwaite, The University of Manchester, UK
</li>
<p><a href="http://downloads.climatescience.gov/Literacy/Climate%20Literacy%20Booklet%20Low-Res.pdf" rel="nofollow">http://downloads.climatescience.gov/Literacy/Climate%20Literacy%20Booklet%20Low-Res.pdf</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk

Served from: blogs.discovermagazine.com @ 2012-05-26 06:30:36 -->
