search for: timetemp

Displaying 2 results from an estimated 2 matches for "timetemp".

2008 Jan 14
1
Error in solve.default message using lme
...lueTime<-matrix(nrow=B,ncol=2) colnames(pValueTime)<-c('geneID','pValue.Time') for (i in 1:B) { print(i) gene = teste$gene [i] keep<-teste$gene==gene MTemp =as.numeric( teste$M [keep]) timeTemp = as.factor(teste$time [keep]) animalTemp = as.factor(teste$animal [keep]) tempMM.HA<-lme(MTemp~timeTemp,random=~1|animalTemp,method='ML', na.action=na.omit) tempMM.H0<-lme(MTemp~1,random=~1|animalTemp,method='ML', na.action=na.omit) pValueTime[i,...
2011 Jan 13
0
Contour plot with time on both X-axis (day) and on Y-axis (hours)
...l, I'd like to graphically represent an hourly temperature timeseries ( http://r.789695.n4.nabble.com/file/n3215785/data.csv data.csv , and see below for pre-process of the data) with the R functions image + contour. To do that I wrote that script : http://r.789695.n4.nabble.com/file/n3215785/Timetemp.r Timetemp.r , which basically : - creates the x-axis, a vector which will contain the days, - creates the y-axis, a vector which will contain the hours of the day, - creates the z-matrix, which has x columns and y rows, - plots the image+contour graph of the x-y-z dataset. This works fine, ex...