I just ran into the same problem. When you read in the DC data, set the year column as the row names instead of the first column. For whatever reason this worked for me. I hope if works for you.
DC<-read.table("Dalton.txt", header=T, row.names = 1) climate<-read.table("climate.txt", header=T) dcc.DC<-dcc(DC, climate, method ="response", start = -4, end =9) -- View this message in context: http://r.789695.n4.nabble.com/dcc-in-bootRes-package-tp3899990p4174194.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.