Posts

Showing posts from September, 2014

Trend since 1998—significant??

Image
I had a question sent to me about the trend since 1998.  As many of you know, my last post included an analysis which showed that the linear regression trend since 1998 was statistically significant. Trends versus start year.  Error bars are the 95% confidence intervals. My questioner asked if I had accounted for autocorrelation in my analysis.  The short answer is "No, I did not."  The reason?  According to my analysis, it wasn't necessary. Here are my methods and R code. #Get coverage-corrected HadCRUT4 data and rename the first two columns CW<-read.table("http://www-users.york.ac.uk/~kdc3/papers/coverage2013/had4_krig_annual_v2_0_0.txt", header=F) names(CW)[1]<-"Year" names(CW)[2]<-"Temp" #Analysis for autocorrelation—I check manually as well but so far the auto.arima function has performed admirably. library(forecast) auto.arima(resid(lm(Temp~Year, data=CW, subset=Year>=1998)), ic=c("bic")) The su

The "no warming" claim rises from the dead yet again.

Image
Like a movie vampire, this one keeps coming back no matter how many stakes are driven through its heart.  I've covered this one ( here , here , and here ).  Bluntly: There is absolutely no evidence that global warming has stopped.  For global warming to stop, the Earth's energy balance must be either zero or negative.  The most recent estimates for the energy imbalance are generally between +0.5 W/m 2 and +1.0 W/m 2 .  The only way the Earth is not going to warm while it is gaining energy is if the laws of thermodynamics magically do not apply.  If the Earth is gaining energy, some part of it, somewhere, must be getting warmer.  The heat must go into either melting ice, warming the oceans, warming the land, or warming the atmosphere (or some combination thereof).

WUWT and how NOT to test the relationship between CO2 and temperature

Image
WUWT published a piece by Danle Wolfe which purports to measure the correlation between CO 2 and global temperature.  As you can probably predict, Wolfe's conclusion is that there is no relationship. "Focusing on the most recent hiatus below, both visually and in a 1 st order linear regression analysis there clearly is effectively zero correlation between CO 2 levels and global mean temperature."  Unfortunately for Wolfe, all he's produced is a fine example of mathturbation as well as an example of forming a conclusion first then warping the evidence to fit.

James Taylor versus relative humidity and specific humidity

Image
It appears that the relative humidity and specific humidity continues to trip some people up.  Yes, I'm thinking of the screed James Taylor wrote on Forbes.com on Aug. 20 .  In his article, Taylor trumpets two "facts".  First, that relative humidity has declined and second, that specific humidity isn't rising as fast as global climate models predict.  Since climate models assume that relative humidity has stayed constant, Taylor then claims that models are overestimating global warming.  Unfortunately for Taylor, his "facts" don't check out.

R code for my Seasonal Trends graph

Image
I had a request for the code I used to generate the graphs in my Seasonal Trends post. While it looks complex, the R code for it is very simple IF you have the data ready.    I'm assuming that you already have the temperature dataset you want as an R object (I have several datasets in an object I simply call "monthly": GISS, Berkeley Earth, Cowtan-Way, HadCRUT4, UAH, and RSS, along with the year/decimal month Time, Year, and numeric Month).  The code I used to generate the graph is as follows: #Create separate datasets for each season monthly.79<-subset(monthly, Time>=1978.92 & Time<2013.91) DJF<-subset(monthly.79, Month=="12" | Month =="1" | Month=="2") DJF$Year_2 <- numeric (length (DJF$Year)) for (i in 1:length (DJF$Year) ) {         if ( DJF$Month [i] == 12) {                 DJF$Year_2[i] <-   DJF$Year [i] + 1         }         else {                 DJF$Year_2[i] <-   DJF$Year [i]         }

One hundred years ago today...

Image
...the last passenger pigeon, a female named Martha, died in the Cincinnati Zoo.  A species that once had an estimated population size of 3 billion was destroyed in roughly 50 years by a combination of habitat loss and overhunting.  The story of that extinction is being told in numerous articles on this centenary (i.e. in Nature , Audubon Magazine , National Geographic ) and at museums like the Smithsonian Institute which tell the story far better than I could here.  The Audubon Magazine article, in particular, is well worth reading as it details the history of the extinction.