Still Hiding the Decline

Even in their Nov 24, 2009 statement, the University of East Anglia failed to come clean about the amount of decline that was hidden. The graphic in their statement continued to “hide the decline” in the Briffa reconstruction by deleting adverse results in the last part of the 20th century. This is what Gavin Schmidt characterizes as a “good thing to do”.

First here is the Nov 2009 diagram offered up by UEA:

Figure 1. Resized UEA version of Nov 2009, supposedly “showing the decline”. Original here ,

Here’s what UEA appears to have done in the above diagram. While they’ve used the actual Briffa reconstruction after 1960 in making their smooth, even now, they deleted values after 1960 so that the full measure of the decline of the Briffa reconstruction is hidden. Deleted values are shown in magenta. Source code is in first comment.


Figure 2. Emulation of UEA Nov 2009, using all the Briffa reconstruction.

89 Comments

  1. stevemcintyre
    Posted Nov 29, 2009 at 1:08 PM | Permalink

    ##COMPARE ARCHIVED BRIFFA VERSION TO CLIMATEGATE VERSION

    #1. LOAD BRIFFA (CLIMATEGATE VERSION)
    # archive is truncated in 1960: ftp://ftp.ncdc.noaa.gov/pub/data/paleo/treering/reconstructions/n_hem_temp/briffa2001jgr3.txt

    loc=”http://www.eastangliaemails.com/emails.php?eid=146&filename=939154709.txt”
    working=readLines(loc,n=1994-1401+104)
    working=working[105:length(working)]
    x=substr(working,1,14)
    writeLines(x,”temp.dat”)
    gate=read.table(“temp.dat”)
    gate=ts(gate[,2],start=gate[1,1])

    #2. J98 has reference 1961-1990
    #note that there is another version at ftp://ftp.ncdc.noaa.gov/pub/data/paleo/contributions_by_author/jones1998/jonesdata.txt

    loc=”ftp://ftp.ncdc.noaa.gov/pub/data/paleo/contributions_by_author/jones2001/jones2001_fig2.txt”
    test=read.table(loc,skip=17,header=TRUE,fill=TRUE,colClasses=”numeric”,nrow=1001)
    test[test== -9.999]=NA
    count= apply(!is.na(test),1,sum)
    test=ts(test,start=1000,end=2000)
    J2001=test[,”Jones”]

    #3. MBH : reference 1902-1980
    url<-"ftp://ftp.ncdc.noaa.gov/pub/data/paleo/contributions_by_author/mann1999/recons/nhem-recon.dat&quot;
    MBH99<-read.table(url) ;#this goes to 1980
    MBH99<-ts(MBH99[,2],start=MBH99[1,1])

    #4. CRU instrumental: 1961-1990 reference
    # use old version to 1997 in Briffa archive extended
    url<-"ftp://ftp.ncdc.noaa.gov/pub/data/paleo/treering/reconstructions/n_hem_temp/briffa2001jgr3.txt&quot;
    #readLines(url)[1:50]
    Briffa<-read.table(url,skip=24,fill=TRUE)
    Briffa[Briffa< -900]=NA
    dimnames(Briffa)[[2]]<-c("year","Jones98","MBH99","Briffa01","Briffa00","Overpeck97","Crowley00","CRU99")
    Briffa= ts(Briffa,start=1000)
    CRU=window(Briffa[,"CRU99"],start=1850)
    tsp(CRU) # 1850 1999 #but starts 1871 and ends 1997
    delta<-mean(CRU[(1902:1980)-1850])-mean(CRU[(1960:1990)-1850]);
    delta # -0.118922
    #used to get MBH values with 1961-1990 reference: compare to 0.12 mentioned in Climategate letters

    #get updated version of CRU to update 1998 and 1999 values
    loc="http://hadobs.metoffice.com/crutem3/diagnostics/hemispheric/northern/annual&quot;
    D=read.table(loc) #dim(D) #158 12 #start 1850
    names(D)=c("year","anom","u_sample","l_sample","u_coverage","l_coverage","u_bias","l_bias","u_sample_cover","l_sample_cover",
    "u_total","l_total")
    cru=ts(D[,2],start=1850)
    tsp(cru) # 1850 2009

    # update 1998-1999 values with 1998 values
    CRU[(1998:1999)-1849]= rep(cru[(1998)-1849],2)

    #Fig 2.21 Caption
    #The horizontal zero line denotes the 1961 to 1990 reference
    #period mean temperature. All series were smoothed with a 40-year Hamming-weights lowpass filter, with boundary constraints
    # imposed by padding the series with its mean values during the first and last 25 years.
    #this is a low-pass filter
    source("http://www.climateaudit.org/scripts/utilities.txt&quot😉 #get filter.combine.pad function
    hamming.filter<-function(N) {
    i<-0:(N-1)
    w<-cos(2*pi*i/(N-1))
    hamming.filter<-0.54 – 0.46 *w
    hamming.filter<-hamming.filter/sum(hamming.filter)
    hamming.filter
    }
    f=function(x) filter.combine.pad(x,a=hamming.filter(40),M=25)[,2]

    ## WMO Figure at CRU
    #http://www.uea.ac.uk/mac/comm/media/press/2009/nov/homepagenews/CRUupdate
    #WMO: http://www.uea.ac.uk/polopoly_fs/1.138392!imageManager/1009061939.jpg
    #2009: http://www.uea.ac.uk/polopoly_fs/1.138393!imageManager/4052145227.jpg

    X=ts.union(MBH=MBH99+delta,J2001,briffa=gate,CRU=cru ) #collate
    Y=data.frame(X); year=c(time(X))
    sapply(Y, function(x) range(year [!is.na(x)]) )
    # MBH J2001 briffa CRU
    # [1,] 1000 1000 1402 1850
    # [2,] 1980 1991 1994 2009

    smoothb= ts(apply(Y,2,f),start=1000)

    xlim0=c(1000,2000) #xlim0=c(1900,2000)
    ylim0=c(-.6,.35)
    par(mar=c(2.5,4,2,1))
    col.ipcc=c("blue","red","green4","black")

    par(bg="beige")
    plot( c(time(smoothb)),smoothb[,1],col=col.ipcc,lwd=2,bg="beige",xlim=xlim0,xaxs="i",ylim=ylim0,yaxs="i",type="n",axes=FALSE,xlab="",ylab="deg C (1961-1990)")
    usr 1960
    points( c(time(smoothb))[temp],smoothb[temp,”briffa”],pch=19,cex=.7,col=”magenta”)

  2. bender
    Posted Nov 29, 2009 at 2:20 PM | Permalink

    But there’s a trend up at then end, you see? The last 5 data points? Hidden in plain sight.

  3. Hoi Polloi
    Posted Nov 29, 2009 at 2:47 PM | Permalink

    If you rotate the graph 90 degrees anticlockwise you’ll get a nice hockey stick on Briffa 2000…

  4. bender
    Posted Nov 29, 2009 at 2:53 PM | Permalink

    That would be in the prorot.m function?
    🙂

  5. Gary
    Posted Nov 29, 2009 at 2:57 PM | Permalink

    And yet, Phil Jones says in the UEA statement, “We are, and have always been, scrupulous in ensuring that our science publications are robust and honest.”

  6. Rhoda R
    Posted Nov 29, 2009 at 3:03 PM | Permalink

    “We are, and have always been, scrupulous in ensuring that our science publications are robust and honest.”

    For certain values of ‘honest’ and ‘robust’.

  7. Posted Nov 29, 2009 at 3:09 PM | Permalink

    Gary – the top man at the IPCC has just done something incredibly silly – the expression ‘hostage to fortune’ springs to mind

    http://www.guardian.co.uk/environment/2009/nov/29/ipcc-climate-change-leaked-emails

    “There is “virtually no possibility” of a few scientists biasing the advice given to governments by the UN’s top global warming body, its chair said today.

    Rajendra Pachauri defended the Intergovernmental Panel on Climate Change (IPCC) in the wake of apparent suggestions in emails between climate scientists at the University of East Anglia that they had prevented work they did not agree with from being included in the panel’s fourth assessment report, which was published in 2007.

    The emails were made public this month after a hacker illegally obtained them from servers at the university.

    Pachauri said the large number of contributors and rigorous peer review mechanism adopted by the IPCC meant that any bias would be rapidly uncovered.

    “The processes in the IPCC are so robust, so inclusive, that even if an author or two has a particular bias it is completely unlikely that bias will find its way into the IPCC report,” he said…”

    Steve – know you don’t like tech threads to include media comment – perhaps a link to post them too would be useful?

  8. jacob
    Posted Nov 29, 2009 at 3:30 PM | Permalink

    I don’t understand why the Jones 1998 and Mann 1999 series no longer break the X axis after 1980 or so as they do in the UEA press release linked to in the “Replicating the Trick Diagram” post. Could someone explain the difference between this and previous versions of the graph?

    Thanks.

  9. fulltilt
    Posted Nov 29, 2009 at 3:32 PM | Permalink

    @Phil Jones, “We are, and have always been, scrupulous in ensuring that our science publications are robust and honest.”

    it’s not what you say but what you do.

  10. george hanson
    Posted Nov 29, 2009 at 4:00 PM | Permalink

    CRU dumped the climate change data! Read it hear
    http://www.timesonline.co.uk/tol/news/environment/article6936328.ece

  11. Posted Nov 29, 2009 at 4:02 PM | Permalink

    The World Meteorological Organization’s “Statement on the Status of the Climate in 1999” report is here:

    Click to access wmo913.pdf

    The graph in which Jones’ email indicates he used “Mike’s trick” to “hide the decline” is apparently the one on the front cover of that WMO report.

    If you look at the graph on the report’s cover, the decline for Briffa’s data stops at about minus 0.1 degree (not minus 0.2 as indicated in the recent UAE graph), at which point it begins going up all the way with the other two lines in the graph to about 0.3 degree. (If you enlarge the page in the pdf file, you can see all three are up there.)

    So, was something hidden?

    The text hints at how the graph could be drawn in the way it was.

    In the report, the front cover image is explained. Here is the first sentence:
    “Front cover: Northern Hemisphere temperatures were reconstructed for the past 1000 years (up to 1999) using palaeoclimatic records (tree rings, corals, ice cores, lake sediments, etc.), along with historical and long instrumental records.”

    And on page 4 is this description:
    “Millennium Temperatures
    Our knowledge of pre-20th century temperature variations in the Northern Hemisphere has increased dramatically in recent years. The availability of natural archives of past temperature such as tree rings, banded corals, ice cores and lake sediments, in addition to historical and long instrumental records, has enabled NH temperature variations to be reconstructed for the last 1000 years at an annual resolution. It is not yet possible to do the same for the Southern Hemisphere due to the lack of adequate palaeoclimatic records. Despite their different emphases on annual or extended summer seasonal temperatures and their different geographical biases, all the reconstructions (shown on the front cover as 50-year smoothed differences from the 1961–1990 normal) indicate that against the background of the millenium as a whole, the 20th century was unusually warm.”

    In both, the graph is described as being based in part on “instrumental records.”

    It seems obvious that the instrumental records were somehow grafted onto the proxy data (probably for all three lines), rather than being shown as a separate line in the graph.

    Is that hiding something?

    It surely is omitting any mention or illustration of the significant divergence between proxies and instruments in some part of the 20th century.

    The result is possibly misleading for anyone who isn’t aware of this divergence and the full extent of it.

    In such reports, swaying public opinion seems the paramount purpose; and glossing over the divergence serves that purpose.

  12. Antonio San
    Posted Nov 29, 2009 at 4:05 PM | Permalink

    Steve,
    you must be aware of this new data page at http://www.realclimate.org/index.php/data-sources/

    Is this a smoke screen or serious?

  13. CBDenver
    Posted Nov 29, 2009 at 4:10 PM | Permalink

    snip – nothing to do with thread

  14. Mac Lorry
    Posted Nov 29, 2009 at 4:24 PM | Permalink

    I believe the key is for a sustained and focused call for transparency in the scientific underpinnings of AGW.

    snip – policy

  15. Posted Nov 29, 2009 at 4:33 PM | Permalink

    Not just hiding the decline, hiding the entire record. Not trying to high jack this post, but I completed a reasonable analysis of some of the CRU data graphs and, in my opinion, they show there as been little to no significant warming.

    http://strata-sphere.com/blog/index.php/archives/11582

    Wish I had real data instead of eyeballing PDF charts. Comments welcomed at my site.

  16. Hoi Polloi
    Posted Nov 29, 2009 at 4:34 PM | Permalink

    ““We are, and have always been, scrupulous in ensuring that our science publications are robust and honest.”

    In this case robusted…

  17. EdeF
    Posted Nov 29, 2009 at 4:43 PM | Permalink

    Wow! Figure 2 above really shows some huge divergence between Briffa
    and either Mann or Jones for most of the 17th century and the later
    half of the 20th century. I didn’t realize the Briffa plunge was so
    dramatic, reminds me of the cliff divers at Acapulco. There is also
    a full 0.7 deg C divergence between Briffa and the instument data
    in the recent years. Note that the MWP is much closer to 1960-1991
    values than Briffa is to either Mann or Jones in the two time periods
    previously noted. With this level of uncertainty, not sure if one can
    positivly state that the present temperatures are significantly higher
    than the MWP.

  18. Stacey
    Posted Nov 29, 2009 at 5:17 PM | Permalink

    The Daily Telegraph and Mail were the only uk papers which have covered “Climategate”.

    Now The Times Online
    http://www.timesonline.co.uk/tol/news/environment/article6936289.ece

    Now The Daily Express has an angle
    http://www.dailyexpress.co.uk/posts/view/69623

    Steve I am going to post at Watts up…

    So if you think this is clutter please delete.

    Steve: I’ll do a thread for press coverage.

  19. Posted Nov 29, 2009 at 8:07 PM | Permalink

    Perhaps the category should be -things that aren’t temperature.

  20. Norbert
    Posted Nov 29, 2009 at 8:34 PM | Permalink

    Why does Figure 2 refer to “Briffa 2000”, when UEA refers to Briffa 1999 ?

    Steve: There wasn’t any relevant Briffa 1999.

  21. Posted Nov 29, 2009 at 8:45 PM | Permalink

    I wrote a small utility for folks like me that are running these scripts using the R GUI in Windows. It simply fixes the directional quotes into the standard quotes so that you do not have to fix them all by hand (the issue is described in the R Faq For Windows). You can download the utility here:

    http://collectivestock.com/software/r-programming-utility/

    Steve:
    At the main blog, this isn’t a problem.

  22. Norbert
    Posted Nov 29, 2009 at 9:59 PM | Permalink

    It seems difficult to find out which table, in which column, contains the un-hidden data. Which URL and column was used for the mangenta part?

  23. Norbert
    Posted Nov 29, 2009 at 10:36 PM | Permalink

    Is it correct to say that the instrumental data is (more) authoritative, while the tree ring data attempts to be an approximation? If so, then then the un-hidden data (magenta) does in fact illustrate that the Briffa series does not correlate with the actual temperatures (and also not with the data series from Mann and Jones) after 1960. It start diverging from the “real” temperature values even before 1960.

    So it seems that the deleted data really isn’t valid.

    Another point is that you seem to accuse UEA of still not showing the previously hidden data. But they haven’t claimed to do so, in that statement. What they did was more important: they showed the graph with the tree ring data and the instrumental data separate, which allows one to see how the combine graph came about. UEA refer to the articles which discussed why the data of Briffa, after 1960, was not included in the graph. That’s probably what they meant when they said “hidden in plain site”. So I don’t really understand why you are so harsh with UEA, except for the one point that you wanted to see the data. But now that you found it, it apparently only confirms what UEA has said about that data in the first place.

    It seems that except for the Briffa data after 1960 (or maybe even after 1950), the tree ring data corresponds well to the instrumental data.

  24. Rev. Dr. E. Buzz Miller
    Posted Nov 29, 2009 at 11:37 PM | Permalink

    I merely have an undergraduate degree from a Big Ten school, but if I pulled this kind of infantile stuff “Oh, I promise I’ll put ALL of the stuff in!” on my final project for my degree, I would have been in trouble…

    I am pretty sure I would have been in trouble, but if the academy is so polluted with this relative truthiness, perhaps I would have been graded higher for playing childish games, if I had the right political attitude.

    This is ridiculous.

  25. Bryan H.
    Posted Nov 30, 2009 at 12:26 AM | Permalink

    With the emails and data coming out all but proving what I’d always thought was the case I’ve started to do more research into all the analysis that you guys have been doing here at CA. What I’m curious is if anybody has taken the time to load the raw instrument data and run control and stability tests on them? If so do you have links to those articles/blog posts?

    So far I see a lot of correlation work being done between various proxies and instrument data but even on the surface the instrument data look remarkably boring (normal and in control). I’ve been tempted to download chunks of the instrument dataset into minitab myself and see what comes out.

  26. John A
    Posted Nov 30, 2009 at 12:43 AM | Permalink

    Someone please explain this one.

    From the CRU code file osborn-tree6/briffa_sep98_d.pro , used to prepare a graph purported to be of Northern Hemisphere temperatures and reconstructions.

    ;
    ; Apply a VERY ARTIFICAL correction for decline!!
    ;
    yrloc=[1400,findgen(19)*5.+1904]
    valadj=[0.,0.,0.,0.,0.,-0.1,-0.25,-0.3,0.,- 0.1,0.3,0.8,1.2,1.7,2.5,2.6,2.6,$
    2.6,2.6,2.6]*0.75 ; fudge factor
    if n_elements(yrloc) ne n_elements(valadj) then message,’Oooops!’
    ;
    yearlyadj=interpol(valadj,yrloc,timey)

    … It flattens a period of warm temperatures in the 1940s 1930s — see those negative coefficients? Then, later on, it applies a positive multiplier so you get a nice dramatic hockey stick at the end of the century.

    Tell me this isn’t blatent data manipulation.

  27. Norbert
    Posted Nov 30, 2009 at 1:11 AM | Permalink

    Steve points out in “New!! Data from the Decline” :

    “While the decline was shown in Briffa et al 1998 and Briffa 2000, it was not shown in the IPCC 2001 graph” […]

    So apparently it was decided, in accordance with published articles, to exclude the post-960 data, yet that data was shown in the referenced literature by Briffa. What then, if I may ask, is the problem ? The data appears to have been deleted from certain files simply because it was decided not to use that (apparently invalid) data.

  28. Scott Gibson
    Posted Nov 30, 2009 at 1:25 AM | Permalink

    Norbert-

    You don’t see any problem with deleting divergent data and splicing in something else that confirms your theory? And presenting it to the public as if it is all of one piece?

    There are two obvious problems:

    1) If the data diverges from temperature now, how do we know it didn’t in the past?

    2) Wouldn’t it be a little more honest to keep separate types of data separate, even if you show them on the same plot? For example, a temperature curve, plotted as a separate line from the dendro. Then someone just looking at the pictures (as for example, those watching Al Gore’s “An Inconvenient Truth”), would have a better chance of evaluating the plots.

  29. Patrik
    Posted Nov 30, 2009 at 1:46 AM | Permalink

    I’ve worked in the computer graphics industry for 20 years. Rule no 1: Never delete anything. You never know when You’re going to need it.

  30. J. Peden
    Posted Nov 30, 2009 at 2:12 AM | Permalink

    Norbert:

    So it seems that the deleted data really isn’t valid.

    The problem is that the rest of the same-stock data is, therefore, not valid as a temperature proxy. It happens to track the instrumental data for a while, then it surely doesn’t, and that’s all we know. We have no idea what it does previous to instrumental data.

  31. Grant
    Posted Nov 30, 2009 at 2:57 AM | Permalink

    I think the decline, or more precisely the divergence, raises two important issues.
    If we accept that tree ring data correlates with temperature, then the divergence needs to be explained. The obvious first hypothesis is that either the trees are “deniers” and are conspiring to grow more slowly and so deliberately distorting the data, or alternatively, the instumental record is inflating recent temperatures. Alternatively there may be other unknown factors which render the whole method unhelpful.
    Secondly, as I understand it, the instrumental record also calibrates the earlier temperatures. The divergence gap then has the effect of depressing all earlier inferred temperatures.

  32. Norbert
    Posted Nov 30, 2009 at 3:38 AM | Permalink

    Scott, there surely is a problem with using only part of data, and that is apparently why that has been discussed in published articles. I wish all scientific articles were available for free.

    The graph with separate curves for tree ring data and instrumental data seems more interesting, so I’d partially agree with you. However, the combined graph is probably a better summary. I’m sure that in preparing the graphs, many other simplifications had to be made. They appear to be the culmination of a huge amount of research, rather than just a plot of simple data points (which is what they look like).

    J.Peden, I think it would be difficult to make a judgement about that without being familiar with the scientific literature, specifically the articles mentioned above. Their content would have to be part of this discussion. Surely everyone agrees that the situation is far from ideal. The topic has a large amount of implicit problems, but so far I don’t see the scandal.

  33. Djbiggs
    Posted Nov 30, 2009 at 4:08 AM | Permalink

    Norbert,

    I would hope that the culmination of a huge amount of research, would be just that: a simple plot of data points, though ones which are both accurate and precise. As my research (or lack there of) could estimate global temperature to +- 30 degrees over most time scales, I wouldn’t be making policy based on them however.

    The scandal for myself (a scientist) is in part, that the large amount of implicit problems are not being addressed within the normal mechanisms of scientific review.

  34. Dave
    Posted Nov 30, 2009 at 6:15 AM | Permalink

    Norbert says: “It seems that except for the Briffa data after 1960 (or maybe even after 1950), the tree ring data corresponds well to the instrumental data.”

    IOW, trees are good thermometers…. except when they’re not.

  35. Geoff Sherrington
    Posted Nov 30, 2009 at 6:51 AM | Permalink

    2009 November 30 Bryan H. permalink

    ” … if anybody has taken the time to load the raw instrument data and run control and stability tests on them?”

    The problem is that we no longer know how to find the raw instrument data. CRU state that they threw out a lot. Some countries have adjusted the raw data and seem reluctant to release it, if they still have it. Some agencies like CRU and GISS have at times further adjusted the “adjusted” raw data.

    snip : overeditorializing

  36. Michael Smith
    Posted Nov 30, 2009 at 9:36 AM | Permalink

    Norbert wrote:

    The topic has a large amount of implicit problems, but so far I don’t see the scandal.

    The scandal is that these guys see nothing wrong with deliberately misleading the public by publishing a graph that purports to show how tree ring data reveals unprecedented 20th century warming — a graph which can only be created by using instrument data in place of the inconveniently “diverging” tree ring data.

    The fact that the truth about the tree ring data — the “divergence problem”– is discussed in the scientific literature is hardly an excuse for what Jones did. An accurate and honest treatment of the data in one venue is not a license for misrepresenting it in another.

  37. Scott Gibson
    Posted Nov 30, 2009 at 10:18 AM | Permalink

    Norbert-

    The reason a combined graph doesn’t work because they are plotting two things that may not be related to each other. In order to plot them together, you have to assume they are all real temperature anomalies. In my experience, I need a lot better correlation before I would accept that assumption.

    I’ll give you an example from the financial world. Lets say you follow a gold-mining stock, and note that it tends to diverge with the price of gold in the later part of the graph. We both know you wouldn’t replace the value of the stock with the price of gold (anomalies). Obviously, there are other factors that affect the price of gold mining stocks besides the value of gold; for example cash flow issues, ore deposit depletion, etc.

  38. DaveJR
    Posted Nov 30, 2009 at 11:21 AM | Permalink

    Norbert wrote: “Scott, there surely is a problem with using only part of data, and that is apparently why that has been discussed in published articles. I wish all scientific articles were available for free.”

    It’s been discussed, yes, but what do you call discussion without a shred of evidence to support any of it? Wishful thinking? The fact of the matter is that dendroclimatologists simply do not know what causes divergence and therefore it is wrong to present these chronologies as authoritative, never mind attempt to cover up data that blows huge holes in the assumption that we can accurately determine past temperatures using them.

  39. Norbert
    Posted Nov 30, 2009 at 12:59 PM | Permalink

    It sounds like neither of you have actually read those articles. Without further knowledge, I would generally assume that such a graph represents a summary of the presented research, rather than the proof. I have some experience with graphs in other areas of research, and a graph by itself can “never” be taken as proof: it is always necessary to scientifically examine the underlying assumptions and methodology.

    I read elsewhere (on realclimate.org) that the IPCC report’s info for those graphs did mention that both tree ring data and instrumental data were used. At this point, your disagreement with the graph is a scientific disagreement with the underlying research, and would need to be discussed scientifically.

  40. Posted Nov 30, 2009 at 1:06 PM | Permalink

    John A and Mikajah,

    If I add those artificial corrections to northern hemisphere tree-ring data, we get this, which is what appeared for tree rings on the WHO report. It appears, therefore, that those artificial corrections were applied to the tree-ring data before some kind of smoothing and averaging to obtain the graph. Can that be true? That would be too brazen, wouldn’t it? Perhaps these corrections just a side-show as a way of determining the size of the divergence?

  41. Posted Nov 30, 2009 at 1:10 PM | Permalink

    Isn’t Mann 1999 the original “Hockey Stick” that was produced with inappropriate data (bristlecone pine rings) and code that generated a hockey stick even when fed Red Noise?

    If so, how can they possibly use this?

    Maybe I’m missing something obvious.

  42. Craig Loehle
    Posted Nov 30, 2009 at 1:15 PM | Permalink

    Something that people are missing, is that to make the splice (even the overlay) of instrumental data valid, you have to assume a precise matchup of proxy and instrumental at some point. It seems they did this by eye to make the graph look best. There is no documentation I have seen that this was done in some justified manner.

  43. Scott Gibson
    Posted Nov 30, 2009 at 1:37 PM | Permalink

    Norbert-

    Do you accept the premise that the tree ring data as presented is directly equivalent to temperature anomalies? If so, that is where we disagree.

  44. Scott Gibson
    Posted Nov 30, 2009 at 1:43 PM | Permalink

    Craig-

    Yes. If they had chosen a different point to “splice” the datasets, they would have had a very different graph. If prior to 1960 closer to where the divergence began, they would have had a graph that no one would have taken seriously. If much later, they don’t have the hockey stick.

  45. Rob Herron
    Posted Nov 30, 2009 at 2:38 PM | Permalink

    Steve,
    It would be great if you could comment on the importance of the 100 year temperature data to current global warming claims by the IPCC. It would seem to have been the principal argument for global warming but as I haven’t read the IPCC reports in depth maybe there is lots of other support for this claim
    The Hadley/CRU generated claim for global warming can no longer be supported after the emails and their destruction of the base data, however many of us “sceptics” are not sure how critical their analysis was to the whole IPCC global warming argument.
    It would help all of us if you could comment on this, I haven’t seen any other blog that addresses this specifically.
    regards,
    Robert

  46. Mark H.
    Posted Nov 30, 2009 at 3:39 PM | Permalink

    Hey, where’s the instrumented data line?

    This must be McIntyre’s Trick, don’t rub it in?

  47. Norbert
    Posted Nov 30, 2009 at 7:30 PM | Permalink

    Scott, just a quick reply before I get home: Personally, I take tree ring data as an indication rather than as proof. The graph also shows that the three data series differ even amongst each other. However, climate research has been dealing with this question for a very long time. The recent update to the IPCC report acknowledges that there is less than 100% scientific certainty by saying that waiting for scientific certainty could mean that we miss crucial tipping points without even knowing it. (Of course the latter statement isn’t just related to the use of tree ring data).

  48. Mark_DJ
    Posted Nov 30, 2009 at 8:45 PM | Permalink

    After digging out a true gem of an email from the CRU stash, in which Michael Mann stated in no uncertain terms that the temperature plots from the GRIP and Dye 3 icecores showed “significant differences” for the MWP (despite the relevant graphs in reality being virtually identical), I’ve had to come to the conclusion that his and UEA’s little clique are so thoroughly self-deluded on the whole subject of the millenial temperature record that they just can’t help themselves any longer. They’ll do whatever it takes to keep on believing their “20th century is the hottest ever” mantra, and have the rest of the world believe it too, no matter how unscientific or generally dodgy that course of action might need to be. Hacking off a few decades of data from a series here or there so as to make a graph look more convincing would have to seem trivial, to anyone of that mindset.

    http://www.yourvoicematters.org/cru/mail/0990718382.txt

  49. Ian
    Posted Nov 30, 2009 at 10:44 PM | Permalink

    Kind of on topic (kind of not…): from Warwick Hughes site:

    CRU quietly revising 8 months of 2009 global temperature data
    November 29th, 2009 by Warwick Hughes
    njcons has just told me CRU have just “deleted” – removed 8 months of their CRUT3 monthly anomalies for 2009. Unannounced that I have seen. I checked at about 6am Canberra time on 30 Nov.
    Sure enough downloading the CRUTEM3 Global mean I see only Jan and Feb for 2009;
    2009 0.561 0.713 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.637
    2009 27 26 0 0 0 0 0 0 0 0 0 0
    HadCRUT3 is the same, 8 months edited out – as is HadSST2 – so the issue is through land and sea data.
    However, nobody has told the Hadley Centre…..

  50. Ian
    Posted Nov 30, 2009 at 10:58 PM | Permalink

    No – sorry. Comment on the site indicated the data was still available on the MetOffice site. Speculating that it is the “Emergency Server” issue at the CRU.

    1.Bob Koss Says:
    November 29th, 2009 at 5:35 pm
    The gridded anomalies thru October are still available here.
    http://hadobs.metoffice.com/crutem3/data/download.html

  51. Jan
    Posted Dec 1, 2009 at 12:20 AM | Permalink

    I wish I knew more science and I curse my lazy teenage high school brain for my current state of ignorance. I’ve been plodding through this stuff for over a week now and am only just beginning to get past the acronyms and the terms you all use with such ease.

    One thing I do know is people and the emails told me enough about the made-men of climate science to start digging. People confident in their expertise do not hide their light, or their data/code, so to speak, under a bushel. They willingly share it, almost to the point of obnoxiousness, as a shining beacon for others to follow.

    In that spirit I thank you and others for shedding some light for me on what is a difficult subject. I am, indeed, learning.

  52. Norbert
    Posted Dec 1, 2009 at 3:03 AM | Permalink

    Question: At which theoretical point of a future instrumental temperature development would you agree that there really is (or would be) a warming problem? (Aside from the question of what causes it.)

  53. DaveJR
    Posted Dec 1, 2009 at 3:45 AM | Permalink

    Norbert wrote: “At which theoretical point of a future instrumental temperature development would you agree that there really is (or would be) a warming problem? (Aside from the question of what causes it.)”

    Suppose all of current temperature trends are down to natural forces. Would you consider natural warming to represent “a problem” now, or possibly some time in the future?

  54. gober
    Posted Dec 1, 2009 at 4:08 AM | Permalink

    Steve,

    I have had difficulty running the code in R.

    I’m a relatively basic R user: not advanced enough to debug your code. However I do run the code you post from time to time. (Actually it was Climate Audit that got me onto R in the first place. Thank you for that: I have found it incredibly useful for other things.)

    When the code gets to the line:
    ” CRU=window(Briffa[,”CRU”],start=1850)”

    I get the error message:
    “Error in NextMethod(“[“) : subscript out of bounds”

    Is there some library I should have loaded? From my very inexperienced look, is “CRU” a header in the Briffa table? The only header that looks like that is “CRU99”. Does that mean the data has changed since you prepared the code?

    I’m sorry – this will be the least of your concerns, but since you’ve gone to the effort of posting the code, I wanted to ask.

    Steve: I’m sorry for the buggy code that I posted. I’ve obviously got slightly tweaked things in my console. I didn’t shut down my computer and run from scratch. I should have. At some point, I’ll shut down my computer and re-run without things in my console.

  55. Norbert
    Posted Dec 1, 2009 at 4:34 AM | Permalink

    DaveJR: Not sure about the ice melting we already have, I see it more as a future problem. Does it answer your question? Will mine be answered as well? Is there some consensus here around this blog, is Steve’s position on this question known?

  56. J. Peden
    Posted Dec 1, 2009 at 5:03 AM | Permalink

    Norbert:

    J.Peden, I think it would be difficult to make a judgement about that [use of Briffa’s tree ring data as Global average temp. proxies] without being familiar with the scientific literature, specifically the articles mentioned above.

    No, it’s cut and dried just the way it is: Briffa’s tree rings simply cannot be used as temperature proxies to reconstruct pre-instrumental Global temperature averages – because they haven’t even been able to do it in the relatively short span of instrumental records, unless maybe the instrumental temps. are wrong and they should have been following the tree rings downward when the divergence occured, which is actually a real possibility the way things have been looking now for some years in regard to the methods of Climate “science”.

    Note that the scientists who are presumeably familiar with the literature have no solution to the “divergence” problem themselves, other than to try to hide it.

    Unfortuneately.

  57. DaveJR
    Posted Dec 1, 2009 at 6:52 AM | Permalink

    Norbert wrote: “Not sure about the ice melting we already have, I see it more as a future problem. Does it answer your question?”
    .
    Not exactly. If climate change was entirely natural, how far would you want to go to prevent it, as opposed to adapt to it?
    .
    How warm is too warm depends, IMO, on a) how much is man-made compared to natural (what changes need to be made to produce x degC change in temperature?), and b) how far we’re prepared to go to artificially alter climate if natural forces are the most dominant.
    .
    My personal opinion is that the effects of CO2 have been vastly overstated compared to other factors (a sum of natural and other man-made sources) because it’s politically convenient just to focus on CO2 and it’s politically convenient for some scientists to maximise this view. Therefore, it is unclear to me whether massive efforts to reduce CO2 would a) have any discernable effect while b) impacting on the quality of life, and potentially technological advancement, of everyone.
    .
    I much prefer the thorough approach by Pielke Sr and can sympathise with his exasperation at the IPCC for taking such a politically convenient view of climate change. Only by identifying the various effects can we best determine what policy or combination of policies to take. I’m afraid I don’t subscribe to the idea that making huge efforts to reduce CO2 (beyond increasing efficiency) is a good thing regardles of whether the predictions of CO2 on climate are right or wrong ie I don’t believe the ends can only justify the means. This is a view opposed by at least one of the Climategate correspondents.

  58. PaulM
    Posted Dec 1, 2009 at 7:50 AM | Permalink

    Norbert, Steve is not renowned for speculating about what might happen re future temperatures. He also discourages general global warming discussions – please try to stick to the specific topic. Splicing the two graphs together is misleading, as the two things are quite different, and it should never be done. Even Mann agrees with that.

    snip – pls don’t go a bridge too far

  59. Posted Dec 1, 2009 at 8:46 AM | Permalink

    Glad my last URL-laden post didn’t make it through moderation. I’ve now done a much better piece, “Hiding the Decline” (click), for newcomers as well as regulars; it takes cognizance of Steve’s work here, and zooms in to enlarge the crucial splice details of the two UEA charts, their origins and their differences.

    Please tell me if I’ve got any of it wrong. I’ve worked hard to get it out as I think clear visuals are important to show enough people EXACTLY what “hide the decline” is about, and how strange stuff is still continuing, but my science may not be perfect.

  60. Posted Dec 1, 2009 at 9:29 AM | Permalink

    Is it possible that I am only one who is finding it difficult to navigate this mirror site? In fact, I have to admit to being lost, which is unfortunate and more than a bit frustrating at this exciting time. OK, I admit to being a dummy when it comes to understanding the structure of sites, but I thought that CA had been quite easy to cope with.
    Is there a primer on site navigation readily available?

    Robin

    (P.S. WUWT gives me much greater problems :-(( Oh dear!)

    Steve: This was thrown up quickly because CA crashed. Stop complaining.

  61. Jeffrey Davis
    Posted Dec 1, 2009 at 11:17 AM | Permalink

    What is the significance of a modern proxy study? Why wouldn’t you just look at the instrumentation?

    Steve:
    Calibration of the validity of the “proxy”

  62. Posted Dec 1, 2009 at 12:30 PM | Permalink

    Very nice work Lucy and you are right – crisp, clear, correct graphics are crucial in explaining the issues.

  63. Shallow Climate
    Posted Dec 1, 2009 at 1:26 PM | Permalink

    Re Lucy Skywalker (above): You asked for feedback in case you got any of it wrong. (By the way, I like your site and applaud your efforts–thank you!) You mention about the two black lines (summer and winter temperatures) plotted separately, and that the two crisscross (which is crazy). Actually, it is the temperature ANOMALIES that are being plotted, not the actual temperatures (note y-axis label), so there is, prima facie, nothing crazy about the two black lines crisscrossing. Thanks again for a great visual.

  64. Posted Dec 1, 2009 at 2:43 PM | Permalink

    Re my posting of yesterday.

    I wasn’t complaining – far from it, I love what’s going on here – but I was getting lost. I understand why, now that you explain that the mirror is a quick solution to a difficult technical problem.

    Thanks, Robin

  65. Norbert
    Posted Dec 1, 2009 at 3:21 PM | Permalink

    PaulM, my question wasn’t aimed at a general discussion, and only partly at the future. The basic intention of the question is to find out what the criteria fro establishing warming would be. To phrase this question in terms of present data: When interpreting the available data (either both tree data etc and instrumental records, or only instrumental records) in a way that would be considered “correct” here on this site, then how far away is that data (or the part of it which is considered valid) of indicating a global warming period? This would give me a better understanding of what the data, according to this site, is really showing. Or perhaps I should phrase it like this:

    How wrong is this graph considered to be, how far away from what it should be? And more importantly: how far away would a corrected graph be from showing global warming? Would have to remove tree data completely? And what would it be like then? Or is this thread, and this site, only about finding errors?

    BTW, as I said above, I personally also prefer a graph with separates lines, but I find the combined graph acceptable as a simplification for a summary. Certainly I wouldn’t consider it a scandal. For a graph which allows a more critical examination of the underlying data, there are many other available graphs, for example by Mann, which also show more data series than just these three.

  66. hengav
    Posted Dec 1, 2009 at 4:03 PM | Permalink

    Craig Loehle says:
    “There is no documentation I have seen that this was done in some justified manner.”

    In the context of the thread’s graph, ending in 2000, smoothed and referenced to the 1960’s, remember that 1998 was the largest spike in the global instrument record. It was caused by an El Nino and totally natural. Is there any way of adding the modern (to 2009) portion of either your reconstructions, or simply the land/sat records to show where the graph goes after 2000?

    Justified manner… If 1998 was not a GHG/man made phenomenon then you would be justified in removing it as a choice as to where to splice the temperature record to the reconstruction. I would love to read your thoughts about THAT choice.

  67. Posted Dec 1, 2009 at 5:28 PM | Permalink

    Thanks a lot for the code. As there are a few bugs in it and the debugging can be quite time consuming I want to share my edited R-file (all data files are included, sorry for the messy plot part – I’m an absolute R-beginner).

  68. Posted Dec 1, 2009 at 7:02 PM | Permalink

    Shallow Climate, thanks for that correction. Actually, far from resolving anything it deepens the mystery. I’ve altered my text accordingly. Also put in a shot from the UEA page.

  69. Posted Dec 1, 2009 at 9:29 PM | Permalink

    Folks, in all this focusing on the search for correlations per se, don’t forget basic theory: CO2 absorbs IR, and so must be a warming stimulus. Sure, we can argue over how much effect, what other things complicate it, but that’s that. As for the misconduct: first, it was a clique and not all AGW supporters all over, and second: you’ve heard of prosecutors/police “framing a guilty man”? They worry if they can get a conviction, so they “improve” the evidence. That doesn’t make the man innocent. Note, it isn’t likely old Svante Arrhenius was being sneaky way back in 1896.

    Steve: I do not want people to debate the “big picture” in one paragraph bites. Every thread then looks the same.

  70. Shallow Climate
    Posted Dec 1, 2009 at 9:29 PM | Permalink

    Re Lucy Skywalker (just above): You respond to me with more grace than I had true humility in responding to you. I find the points you raise (at your linked site) to be fascinating, and I appreciate your thoroughness and devotion. Again, thanks for what it is, IMO, a great site.

  71. Scott Gibson
    Posted Dec 1, 2009 at 11:34 PM | Permalink

    Norbert-

    I am a geologist, so I naturally have a different view than most. The Earth has seen much warmer periods than the present, and much colder. Sea levels have been much higher than the present, and much lower. Species have come and gone, with no concern to how they felt about it. The Earth has had no problem surviving these changes, and I’m sure that man can adapt to any climate shifts that occur.

    With reference to what kind of graphs and changes would convince me; I don’t know. I do know I have no confidence in much of what I’ve seen, and I could write a book on why. Suffice it to say that tree rings, varves, and every other type of proxy data we have, seem to depend on factors other than temperature. Can someone convince me that a certain dendro line (whether from ring width, wood density, isotopic fractionation measures, etc) correlates to temperature? Of course. However, I haven’t seen one yet, though I could be convinced if I saw the methodology behind the data and I trusted the sources. Another problem is that even our instrument temperature data is questionable, and it doesn’t help that the slopes of regression lines are reported to the hundredth of a degree, when the original data is probably +/- a degree.

    As a skeptic, I am willing to look at all points of view. However, after all my experience viewing hundreds of lines of evidence, I don’t see anything unusual in today’s climate. We are much closer to the coldest period in Earth’s history than the warmest, even if you only include the Phanerozoic. We are barely out of glaciation, after all!

  72. Martin Hoppe
    Posted Dec 2, 2009 at 12:54 AM | Permalink

    I would agree, merging the thermometer temperatures on the same graphwith the proxies is not the correct thing to do. Actually, it is =- snip – in this case to do so. As the thermometer temps diverge severely from the proxies post 1960, there obviously is something unaccounted for in the temperature data. The three proxies tend to agree with each other, it is the thermometer data that is the odd man out. Best to look for reasons why the thermometer data may be out of whack. (heat islands or changes in way temperatures were taken as time progessed or ??) Since there is something quite amiss between the proxies and the thermometers post 1960, to replace proxy data with thermometer data is closer to =snip – than good science.

  73. Norbert
    Posted Dec 2, 2009 at 2:30 AM | Permalink

    Scott, which time scales are you referring to? Very long ones, like Ice Age and Dinosaur age?

  74. Hugo M
    Posted Dec 2, 2009 at 10:28 AM | Permalink

    Steve, as a test for an R installation, I tried to run your script after having fixed some WordPress related issues (quotation marks and so on). But it seems as if you posted a wrong version. I fixed the obvious “CRU” vs “CRU99″ issue, but R also halts when it encountered the gated portion of britta:

    > X=ts.union(MBH=MBH99+delta,J2001,briffa=briffa[,”gate”],CRU=cru ) #collate
    Error in is.vector(X) : object ‘briffa’ not found

    Obviously, this could also due to an outdated R version, since it didn’t say it couldn’t find jones 🙂

    Steve: I closed down my R-session and will re-run the script and tidy. My abject apologies for not doing so before.

  75. Scott Gibson
    Posted Dec 2, 2009 at 10:45 AM | Permalink

    Norbert-

    Both long and short, geologically speaking.

    The geologic record shows quite clearly that something cooled the Earth during the Pleistocene, causing the ice ages. Prior to that, we didn’t see these repeated large scale continental glaciations. In fact, Greenland is still covered with ice, and there is evidence it had less ice just 700 (?) years ago, which may or may not indicate cooling since then.

    Geologists generally regard the current time as an interglacial, and the sense is that we will see another glaciation soon (geologically speaking), assuming the trends continue.

    As for the Mesozoic (dinosaur age), rocks state quite clearly that sea levels were generally much higher than currently, and it is likely that we had no or little icecaps at the poles for much of this time. Given that, it is probable that temperatures were almost always warmer than currently.

  76. Hugo M
    Posted Dec 2, 2009 at 10:51 AM | Permalink

    Well, debugging your script becomes quite amusing. Replacing the small “briffa” by a great “Briffa”, I again get a sybilline comment:

    > X=ts.union(MBH=MBH99+delta,J2001,briffa=Briffa[,”gate”],CRU=cru ) #collate
    Error in NextMethod(“[“) : subscript out of bounds

  77. Posted Dec 2, 2009 at 1:38 PM | Permalink

    @Hugo M: I think this should be just “briffa=gate” (gate from line 11). I think I managed to get all bugs out.

  78. stevemcintyre
    Posted Dec 2, 2009 at 1:51 PM | Permalink

    Steve: I re-ran with a fresh console and fixed the two small bugs in the online script noted above. Scripts is now clean. The edits are not relevant to the output (as I’d dealt with them on the console) but I try to make these turnkey and apologize for not checking it on a fresh console before placing it online. Too hasty.

  79. Norbert
    Posted Dec 2, 2009 at 2:06 PM | Permalink

    Scott, I didn’t have the impression that the question is whether planet earth would survive. The question is whether we would want any drastic changes. But this leads off-topic. Perhaps there is some other thread where we can discuss this?

  80. Norbert
    Posted Dec 2, 2009 at 2:20 PM | Permalink

    snip – editorially there is no purpose in one paragraph discussion of the big picture without working off an article. Hold this debate for now.

  81. James
    Posted Dec 2, 2009 at 3:58 PM | Permalink

    (off topic)

    Norbert (please excuse me for jumping in, Scott) – I’m also a geologist and a skeptic. As for your queries concerning whether we would want drastic changes, this is irrelevant. The earth has always been (and will continue to be, at least until the Sun eats it) in a state of flux. Our planet has run the gamut from molten planetoid (according to currently accepted theory) to frozen ice cube (I hear the Wooly Mammoths loved it). What you’re asking is about human preference — and that’s the crux of the climate change argument. Geo-engineering aside (as I think it’s a horrible idea), human beings are certainly not in the driver’s seat regarding the planet’s thermostat.

    If you truly wish to know more about the particulars of the debate, may I humbly suggest searching Bishop Hill’s Blog (http://bishophill.squarespace.com/).

    As others have stated, ClimateAudit is concerned with the statistical analysis (and validity) of climatological studies.

  82. Scott Gibson
    Posted Dec 2, 2009 at 7:10 PM | Permalink

    Norbert-

    Yes we are off topic, and thanks to Steve for allowing that. I’ll just answer your last question, because I have to run.

    As I said, I am a geologist although I have worked with tree ring geochemistry, so my area of expertise is in geology not meteorology. The point I’m trying to make is, that regardless of whether the global temperature is going up or down at this moment, we are much closer to another ice age than to catasrophic warming. I don’t believe the data we have proves or disproves global warming. I don’t know whether it is warming now or not.

  83. gober
    Posted Dec 2, 2009 at 7:16 PM | Permalink

    Hi Steve,

    I got all the way through to the last two lines, at which point “usr 1960” generated the message:

    ‘Error: unexpected numeric constant in “usr 1960″‘

    and the “points( c(time(smoothb))…….” line generated:

    ‘Error in points(c(time(smoothb))[temp], smoothb[temp, “briffa”], pch = 19, :
    object ‘temp’ not found’

    Also, from comparing your code with Michael’s (above), it looks like yours is plotting only one out of four time series: only one “plot( c(time(smoothb))…” line.

    Again, I’m sure this is the least of your worries, but I assume you wouldn’t have bothered to post it if you didn’t want it to be entirely reproducible.

  84. Mike Hollinshead
    Posted Dec 3, 2009 at 7:55 AM | Permalink

    re: AJ Strat raw CRU data analysis

    AJ Strat provides a CRU map showing the range of variation in measurement.

    It is significant that the widest variation is seen in Northern high latitudes where claimed global warming has been most significant. It is all in the >4 degree C category.

  85. Harry
    Posted Dec 3, 2009 at 11:50 AM | Permalink

    I was just reading this BBC article that include some ‘data’

    http://news.bbc.co.uk/2/hi/in_depth/sci_tech/2009/copenhagen/8386319.stm

    It struck me funny that the CO2 readings are being taken from Mauna Loa which is a volcano.

    I’m not a scientist but it’s seems to me the gases that a volcano emits merely tell us something about that particular volcano and nothing more.

  86. airfoilmod
    Posted Dec 3, 2009 at 8:58 PM | Permalink

    Delete if too vanilla/plebeian. My Weather/Climate memory has retreating Ice at Poles a result of not only temp. but Drought, which can be caused by declining GMT. Less energy at Equator to evaporate water, weaker winds to distribute said vapor, less water transported to Poles to fall as precip, to then augment ice after seasonal melt, etc. What memory fails is the relationship and scale, GMT/precip/and related trends. Anyone? I’m calling cooling, but my degree is old.

  87. nanny_govt_sucks
    Posted Dec 5, 2009 at 1:18 AM | Permalink

    Did anyone catch this from Dr. Mann:

    http://www.mcall.com/news/nationworld/state/all-a11_5climategate.7105053dec03,0,3182494.story

    “Mann said last week the ”trick” was not a deception, but a clever way to combine the best data from the last 1,000 years until 1960 with actual temperature readings from 1961 to 1999. He says ”decline” refers to the decline in the reliability of tree rings to reflect temperatures after 1960.”

    … and how is that “reliability” assessed? By comparing to temperatures, right?

  88. Eben
    Posted Dec 5, 2009 at 9:39 AM | Permalink

    Seeking an interview with you Mr. McIntyre!!?? I am a producer/host on KPFK 90.7fm in Los Angeles and have always questioned the science behind human induced global warming.

    Please email me at your earliest convenience!! And thank you so much for all that you do!

    Eben Rey
    KPFK 90.7fm
    RadioAlchymy

  89. Dorv562
    Posted Dec 5, 2009 at 8:08 PM | Permalink

    Steve, beware of KPFK….

5 Trackbacks

  1. […] […]

  2. By Climategate Round-Up #4 | GORE LIED on Nov 30, 2009 at 5:15 PM

    […] Hide the decline, redux. […]

  3. […] Playing hide and seek behind the trees 30 11 2009 Still Hiding the Decline […]

  4. By Scientific Integrity | Detached Ideas on Dec 3, 2009 at 4:14 PM

    […] history. See the discussion by Jean S here, and follow-up posts by Steve McIntyre here and here. The emails contain many similar examples whose cumulative impact will take time to sort […]

  5. […] Grafik habe ich in GNU Octave (das ist eine Art freies Matlab) geschrieben und es basiert auf dem in R geschriebenen Programm von Stephen Mcintyre. Die Daten werden mit einem 40 Jahre Hamming Tiefpass Filter geglättet, wobei der Mittelwert der […]