Displaying 1 result from an estimated 1 matches for "examplenmleerror".
2012 Mar 21
1
nlme error on dimensions in multiplication
...30] do not match the length of object [34]
In addition: Warning message:
In conLin$Xy * varWeights(object) :
longer object length is not a multiple of shorter object length
Below is an example that generates this message on
Windows XP
R 2.14.0
nlme 3.1-103
---
library(nlme)
#load(file="tmp/exampleNmleError.RData") #ds1, fm1, ctrl
con <- url("http://www.bgc-jena.mpg.de/~twutz/tmp/exampleNmleError.RData")
load(file=con) #ds1, fm1, ctrl
close(con)
ds1 <- subset(ds1, select=c("ColNoM","minT","resp"))
head(ds1)
plot( resp ~ minT, col=rainbow(length(u...